JQuery before() Method and form fields - Javascript jQuery

Javascript examples for jQuery:Form Input

Description

JQuery before() Method and form fields

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.10.1.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/*from w  w  w  . j  av a 2 s  . c  om*/
$('button').click(function () {
  $('body').append('<form><h1>Example Form</h1><input type="text" /><input type="submit" value="Submit" /></form>');
});
    });

      </script> 
 </head> 
 <body> 
  <button> click </button> 
  <hr>  
 </body>
</html>

Related Tutorials