Add delay to a running function on click of a div - Javascript jQuery

Javascript examples for jQuery:Mouse Event

Description

Add delay to a running function on click of a div

Demo Code

ResultView the demo in separate window

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

Related Tutorials