top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How do you attach a event to element which should be executed only once?

+4 votes
296 views
How do you attach a event to element which should be executed only once?
posted Jul 16, 2015 by Shivaranjini

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

This attaches a handler to an event for the element. The handler is executed at most once per element. In simple terms, the attached function will be called only once.

$(document).ready(function() {
    $("#foo").one("click", function() {
        alert("This will be displayed only once.");
    });
});
answer Jul 23, 2015 by Manikandan J
...