Jump to content

[SOLVED] How to delete drop down cache?


Abhi2k5

Recommended Posts

There's no such thing as a form cache. And because the title says drop down cache, I guess you're having a problem like the user clicks the back button and all of the elements are still as they were. In which case, you could try javascript to re-set the values of the boxes with a delay on page load. Something like:

 

setTimeout(document.forms[0].textboxname.value='', 50);

 

That would set the value of the textbox named textboxname to nothing after 50 milliseconds.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.