I have two HTML select boxes. I need to reset one select box when I make a selection in another.
select
&l
Something like this should do the trick: https://jsfiddle.net/TmJCE/898/
$('#name2').change(function(){ $('#name').prop('selectedIndex',0); }); $('#name').change(function(){ $('#name2').prop('selectedIndex',0); });