Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

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

  • 2 risposte
  • 4 hanno questo problema
  • 34 visualizzazioni
  • Ultima risposta di 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.

Modificato da bizbook il

Soluzione scelta

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).

Leggere questa risposta nel contesto 👍 0

Tutte le risposte (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

Soluzione scelta

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).