Javascript examples for jQuery Method and Property:live
Jquery Live Load
<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>