How do I make html have priority over firefox's memory for select elements?

Posted by greg0ire on Stack Overflow See other posts from Stack Overflow or by greg0ire
Published on 2010-06-09T11:21:56Z Indexed on 2010/06/09 11:32 UTC
Read the original article Hit count: 123

Filed under:
|

Consider the following piece of code :

<select>
    <option value="0">foo</option>
    <option value="1" selected="selected">bar</option>
</select>

If I select the first option and reload the page, the first option stays selected and the select does not switch to the second option. How can I force firefox to give priority to the html?

© Stack Overflow or respective owner

Related posts about html

Related posts about firefox