Javascript examples for jQuery Method and Property:one
Register two event types to run once
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").one("click dblclick", function(){ $(this).animate({fontSize: "+=6px"}); });//ww w . j av a2 s. c o m }); </script> </head> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>