March 16, 201016 yr Does anyone know if there is a way to get this tag to go direct to a .html page? <option value="1">Country guide</option> I want it so that when a user picks a option from the select drop down it takes then to the revelant page. Regards, Wayne
March 16, 201016 yr Hi There, This usually works for me <form> <select onchange="window.open(this.options[this.selectedIndex].value,'_top')" name="pageoptions"> <option value="page1.html">page1</option> <option value="page2.html">page2</option> </select> </form> Cheers
Create an account or sign in to comment