you want somebody to write the script for you? :D I'm not too hot at JavaScript D:
It would be fine if it was just a menu of URLs, but I'm having trouble figuring out how to make it insert tags on selection. Figured there might be some programmers hanging around who might be able to give me some advice :p
Trying to work off of this base:
<HEAD>
<SCRIPT LANGUAGE="JavaScript"> function formHandler(menu){ var scrpt = document.form.site.options[document.form.site.selectedIndex].value; window.location.href = URL; } </SCRIPT>
</HEAD>
<BODY>
<center> <form name="menu"> <select name="site" size=1 onChange="javascript:formHandler()"> <option value="">Go to.... <option value="http://www.example1.com>Example 1 <option value="http://www.example2.com">Example 2 <option value="http://www.example3.com">Example 3 <option value="http://www.example4.com">Example 4 <option value="http://www.example5.com">Example 5 </select> </form> </center>
, but I'm not sure what to do with document.form.site.options[document.form.site.selectedIndex].value; window.location.href = URL;
:(
Ooh, and thanks for the link, Marco :) I shall see if I can find solace there. |