Register two event types to run once - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:one

Description

Register two event types to run once

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials