Hihere is my case

please tell me if its reasonable or not or is there a "correct" way to
approach this

in our application we use empty string as a default value
i was doing a double select function and i want to cache the value from data
get from using getJSON.
I know that I probably should use GET and set $.ajax cache = true.
But for some reason i cannot rely on browser's cache, the maximum cache i
can use is while the page is still loaded. If the page is refreshed i will
need to reload everything as needed and cannot depend on the data in
browser's cache.
so i will have a select with options like
<select>
<option value="">--</option>
<option value="v1">value 1</option>
<option value="v2">value 2</option>
</select>

and upon select i will use the value to refresh the next select.

Thanks

Reply via email to