Please any body hel me out for validating the drop down list, that list contains 5 values if it is not selected then it should give errormessage
Thanks in advance
Thanks in advance
var e = document.getElementById("dropdownname");
var datavalue = e.options[e.selectedIndex].value;
var datatext = e.options[e.selectedIndex].text;
Comment