Hey. I use forms as to make drop down boxes, that contain links. But whenever I make a new page, I have to add that new page's link to 20+ forms, because I have 20+ pages. So my question is, is there a way I can have a external form, like CSS, and have it load when the page loads? That way I only have to change one thing. Like CSS. Example code: <form name="form" id="form2"> <select name="jumpMenu2" id="jumpMenu2" onChange="MM_jumpMenu('parent',this,0)"> <option value="" selected>Choose a Comic</option> <option value="http://www.tptcomics.com/nameless/latest.html">Latest</option> <option value="http://www.tptcomics.com/nameless/archive.html">Archive</option> <option value="http://www.tptcomics.com/nameless/comic01.html">Comic01</option> <option value="http://www.tptcomics.com/nameless/comic02.html">Comic02</option> </select> </form> Thankyou, Pithdog.
Yeah, it's called a Server Side Include. If your web server supports a scripting language like php or asp or ruby, its easy to add. You just put <?php include("form.html"); ?> in the pages where you want the form and put the form in form.html. I think you can also set up your web server to use Server Side Includes without a scripting language but I don't know how.