Add Item In Another Dropdownlist on selection of First Dropdownlist using Jquery
Add Item In Another Dropdownlist on selection of First Dropdownlist using Jquery Jquery Refrence and workinf Function < script type ="text/javascript" src ="http://code.jquery.com/jquery-1.10.1.min.js"></ script > < script type ="text/javascript"> $(document).ready( function () { $( "#drd1" ).change( function () { var selectedVal = $( this ).val(); // alert(selectedVal); if (selectedVal == "1" ) { $( "#drd2" ).get(0).option...