hello,
I'm trying to clear up a form when Reset button clicked; however, this SELECT box keeps stay the same with value that I selected recently.
I included the following code in a reset function to reset the box to value (0) "Make your selection" but no luck:
is there another way?
I'm trying to clear up a form when Reset button clicked; however, this SELECT box keeps stay the same with value that I selected recently.
I included the following code in a reset function to reset the box to value (0) "Make your selection" but no luck:
Code:
mySDK.Channel.value = "0";
mySDK.Channel.options[0].text = "";
mySDK.Channel.options[0].value = 0;
is there another way?