drop down select box
I am using java script. I am trying to clear the values which are selected by hitting the submit button. The problem is that i clear the values which are selected, but when I go the drop down select box, it is supposed to be in the drop down. But my code clears it from the selected as well as from the drop down.
function clear from(){
var custName=document.getElementById("txtCustomer")
custName.options[custName.selectedIndex].text=""
}
|