Log in

View Full Version : Form drop down box without submit button



Claret
01-15-2008, 07:40 PM
:confused: Hi there!! :confused:

I have a form with a drop down box which the user has to choose the options and click on the submit button to access choosen option.
What script do I need to not have to click the submit button?
The form I am talking about is at:

http://www.zanze.com/advancedsearch.asp

Any help will be appreciatted
:) ;) :rolleyes:

Claret

Jas
01-16-2008, 07:25 PM
Are saying that, when a user makes makes a choice on the drop box, it will submit the form? If so you could use:



<select onchange="submit()" name="name"> <!-- your options here //--> </select>


Note that the first value could never be chosen, so it would need to be a dummy value.