Is it possible to automatically submit the selection menu when the selection changes without using the button to submit the form. I have four of them on my page, and using the button for each uses too much space. In the "Select" menu, I mean:
<select name="something" class="something" title="something something">
<option selected="selected">Option One</option>
<option >Option Two</option>
</select>
I would also like to add a popup confirmation for the on change event. The following is what I use for buttons, but it does not work for the select menu.
onclick="return confirm('do you haz teh codz?');"
Any reference to articles or examples is appreciated.
thank
anon445699
source
share