I have a JSP with the following select box:
- Code: Select all
<form id="ampForm" method="POST" action="AMPSearch">
<select size="10" name="amp" onchange="ampForm.submit()" class="listbox">
<c:out escapeXml="false" value="${requestScope.ampList}" />
</select>
</form>
In IE7 and Opera this select box works and when the user selects a value it is submitted. However, in Firefox 2.0 everything works except when a value is selected nothing happens/the form is not submitted.
Does Firefox not recognise the onchange attribute? What should I use instead?
Any help much appreciated,


