Javascript examples for jQuery:Mouse Event
Add delay to a running function on click of a div
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.8.3.js"></script> <script type="text/javascript"> $(window).load(function(){/* w w w . j a v a2 s. c o m*/ var timeout; if(timeout) { clearTimeout(timeout); timeout = null; } timeout = setTimeout( autoSlide, 3000); function autoSlide(){ console.log("test"); } }); </script> </head> <body> </body> </html>