DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
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.

Jacob Frazier

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.

Recent Posts

Your Complete Guide to the 461 Visa: Building a Life in Australia with Your New Zealand Partner

People usually stumble onto the 461 visa when they realise there’s no simple way to…

3 days ago

10 Buyer Personas You Encounter in Your Retail Store

When you run a brick-and-mortar retail store, you encounter an array of customer personalities. From…

3 days ago

Why Roarbank Is Transforming Everyday Banking in India

In today’s digital era, people look for convenience, transparency, and genuine rewards from their financial…

3 days ago

Quality with Quantity: Importing LED Lights Can Save You Big Bucks

If you are planning to start a lighting business and looking for a supplier of…

4 days ago

11 Reasons Why Avoiding Plagiarism is Necessary for SEO and content marketing

If you are a copywriter or a content marketer, you will second my statement that…

7 days ago

6 Common Injuries After a Motorcycle Accident

Motorcycle accidents often lead to severe injuries because riders have minimal protection compared to drivers…

1 week ago