Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

meta refresh does not refresh drop down select options but does the check boxes... IE works without error (FF cashe issue)

  • 2 antwoorden
  • 4 hebben dit probleem
  • 34 weergaven
  • Laatste antwoord van cor-el

more options

Drop down list would not refresh even if the html had changed using meta refresh tag. The problem was solved by removing the list name in the html during the refresh part of my page. It is a php script so I can do this but with straight html I do not see a way to fix the issue for others finding this a problem, FF should not do this.

Example:

<select name="page_header_color">

             <option >blue</option>
           <option >green</option>
           <option selected >red</option>
           <option >black</option>
           <option >silver</option>
         </select>

to have it refresh correctly changed to this:

<select name="">

             <option >-------</option>
         </select>

the script changes the page to the above between refresh and the "real" html that fixes the issue, otherwise FF does not refresh the drop down lists at all, but it does refresh check boxes and everything else.

Drop down list would not refresh even if the html had changed using meta refresh tag. The problem was solved by removing the list name in the html during the refresh part of my page. It is a php script so I can do this but with straight html I do not see a way to fix the issue for others finding this a problem, FF should not do this. Example: <select name="page_header_color"> <option >blue</option> <option >green</option> <option selected >red</option> <option >black</option> <option >silver</option> </select> to have it refresh correctly changed to this: <select name=""> <option >-------</option> </select> the script changes the page to the above between refresh and the "real" html that fixes the issue, otherwise FF does not refresh the drop down lists at all, but it does refresh check boxes and everything else.

Bewerkt door bizbook op

Gekozen oplossing

You need to reload and bypass the cache to reset choices made via selection boxes and drop down list.
Otherwise the selection are reloaded from the cache, so a meta reload won't work either (may work if you reset them via an onload event).

Dit antwoord in context lezen 👍 0

Alle antwoorden (2)

more options

Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox.
http://forums.mozillazine.org/viewforum.php?f=25
You'll need to register and login to be able to post in that forum.

more options

Gekozen oplossing

You need to reload and bypass the cache to reset choices made via selection boxes and drop down list.
Otherwise the selection are reloaded from the cache, so a meta reload won't work either (may work if you reset them via an onload event).