I have two HTML select boxes. I need to reset one select box when I make a selection in another.
select
&l
This can also be used
$('#name2').change(function(){ $('#name').val('');//You can set the first value of first one if that is not empty }); $('#name').change(function(){ $('#name2').val(''); });