Categories: jQuery

jQuery one() Method

Share

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.

Recent Posts

Editorial Elevation: Refined Writing Services

Introduction The influence of words is more significant than ever in a digital age. Whether…

2 days ago

How to Start a Business?

How to Start a Business begins with the realization that every business has its risks and…

2 days ago

4 Tips for Businesses Struggling with Cash Flow

It's not uncommon for businesses to have financial difficulties nowadays. The fact of the matter…

3 days ago

Top Advantages of Augmented Reality in Healthcare

The success of any tech innovation depends on its share in various industries and business…

3 days ago

Recover From Google Penalties in 10 Steps in 2024

Facing Google penalties can be a daunting challenge for businesses relying on organic search traffic.…

3 days ago

What is the Future of Artificial Intelligence?

Technology, undeniably, has made our lives easier. But the advent of artificial intelligence has been…

3 days ago