We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
$( "#foo" ).one( "click mouseover", function() { alert( "The " + event.type + " event happened!" ); });
needs an event in the callback function parameter list
event
$( "#foo" ).one( "click mouseover", function(event) { alert( "The " + event.type + " event happened!" ); });
http://api.jquery.com/one/