The jQuery one() Method attached a handler for the selected elements and executed at most once per element per event type.
Using one() method, the event handler is only run ONCE for each element.
Possible event values are: blur, load, focus, resize, unload, scroll, click etc.
Syntax:
This is the simple syntax for using this method −
selector.one( type, [data], fn )
Example of jQuery one:
$( "#elementID" ).one( "click", function() { alert( "Item will be displayed only once." ); });
Above code is equivalent with:
$( "#elementID" ).on( "click", function( event ) { alert( "Item will be displayed only once." ); $( this ).off( event ); });
Parameters
This is the description of all the parameters used by this method −
- type
- data
- function
Read Also: jQuery bind() and unbind() – attaching event handlers
For more information Click Here.
Based on United States, Jacob Frazier is a skilled JavaScript developer with over 8 years of experience. He is passionate about change and trying new things, both professionally and personally. He loves startups and is extremely proactive.