I'm looking for a script that will help me generate HTML around what a user will input. .e.g. If a user puts this page URL from their browser into a box and clicks submit, it turns it into a HTML link? I guess it's simple...
You mean Jquery? <html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("p").hide(); }); }); </script> </head> <body> <h2>This is a heading</h2> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button>Click me</button> </body> </html> Code (markup): Of course you can edit it Thanks