I have a select field within a form:
<form id="myform">
<select id="value" onchange="javascript: document.myform.submit()">
<option>....
</select>
</form>
After the form is submitted, it is impossible to use the 'back' button without resubmitting the form. However, if I use a regular 'submit' button, it is possible.
Is there a way you know of to get this behavior while still being able to use the javascript 'submit()'?
Accessibility is not a concern, having javascript enabled is required to use this site and that is the way the client wants it.