event handler attachment jquery code example
Example: event handler attachment jquery
$( "#foo" ).one( "click", function() {
alert( "This will be displayed only once." );
});
$( "#foo" ).one( "click", function() {
alert( "This will be displayed only once." );
});