Forum Moderators: open
<form name="frm" method="post" action="thispage.php">
<select name="mySelect" onChange="document.main.submit()">
<option>value 1</option>
<option>value 2</option>
</select>
</form>
This works just fine for me in every browser, however, I have heard several complaints from customers that when they change the select, they get a "Page not found" error. This apparently happens even in new versions of IE, but I cannot reproduce the error. Has anyone seen this? Does anyone have any thoughts or suggestions? I am running out of options here.
onChange="this.form.submit();"
;)