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.
This is the simple syntax for using this method −
selector.one( type, [data], fn )
$( "#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 ); });
This is the description of all the parameters used by this method −
Read Also: jQuery bind() and unbind() – attaching event handlers
For more information Click Here.
In a world where digital presence is paramount, the question isn't whether you should do…
Over the years, people have experimented with various methods to maintain healthy and beautiful hair.…
Your brand more than developing an attractive and creative logo and infectious motto. It's the…
Introduction Are you someone who has suffered from a personal injury and want to file…
Operating from home has emerged as one of the most popular ways of doing jobs…
If the consequences of our society’s ever-growing debt are what worries you, then it is…