How can I load this array example from a json result set?
How can I load this array example from a json result set?
Thanks Marina. It does help some.
I don't want to reload the entire result set, for drop-down two, every time there is a value change on drop-down one. Rather, I want to just look up the appropriate value in an array that I have loaded.
If I populate the array on the page load event, what is the best way to refer back to it for my lookup on the change value event on drop-down one?
You could store the array in local storage, or create a global variable to hold the array.
Thanks Max