I have a form that has a refresh button that uses this code:
<button type="button" onClick="window.location.reload();return false;" style="height:33px; width:50px;">
<img src="../css/images/restart_25.png" />
</button>
and i've also used this:
onClick="window.location.reload()"
On all other broswers, this button refreshes the entire page, and with the first select set back to <option value="">Select Category</option>
On firefox the page refresh, but the Category Select remains what it was previously selected, for example Test.
Before Refresh on Firefox:
After Refresh Button Clicked on Firefox:
After Refresh Button Clicked on all other browsers:
I'm not sure if it matters but, this category select is attached to ajax code which searches for the selection picked by the user and outputs the next selection of options, if the code is needed, i will display it.
Why does Firefox not refresh the entire form and all other browsers do? Thank you.