Javascript examples for jQuery:Form Input
JQuery before() Method and form fields
<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>