I have an option object that I need to evaluate the selection of by comparing the original value that was loaded when the page was sent to the new value on changes.
Once the onChange() event occurs, I have lost the original value in object.options[obj.selectedIndex].value
Question: "How can I get the original value loaded into a variable and compare that to the new changed value"
Additional Comments: I created a function for the onFocus event to set the original value, but it seems as it this function is called once originally then as soon as I mouse up on the new selection the onFocus() function is called again thus resetting my origVariable to the new value.
Thanks
Once the onChange() event occurs, I have lost the original value in object.options[obj.selectedIndex].value
Question: "How can I get the original value loaded into a variable and compare that to the new changed value"
Additional Comments: I created a function for the onFocus event to set the original value, but it seems as it this function is called once originally then as soon as I mouse up on the new selection the onFocus() function is called again thus resetting my origVariable to the new value.
Thanks