Jquery Live Load - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:live

Description

Jquery Live Load

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.7.1.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){//  ww  w . ja va  2s . c  o m
$(document).ready(function () {
    $('form').live('click', function() {
        console.log('clicked');
        $('form').die('click');
    });
});
    });

      </script> 
 </head> 
 <body> 
  <form> 
   <input type="text"> 
   <button>Test</button> 
  </form>  
 </body>
</html>

Related Tutorials