Hi friends,
I want to select an option in select tag through the value. - javascript
var selectbox=document.getElementById("Lstrtemplate");
var TemplateName=selectbox.options[selectbox.selectedIndex].text;
Now i am having the option text in TemplateName, using this i want to update an another select tag, which is having the same text..
But dont want to use index or id..
Want to achieve only by the value
Please help me