jQuery – Reset Select Options
If you need to reset select options try the following:
var select = jQuery('#someSelect');
select.val(jQuery('options:first', select).val());
Regardless of the first option being blank or not, this will reset the currently selected option to first option. In my opinion it’s always good practice to have a blank first option so the user can easily see it has been reset.


I think it should be this :
select.val(jQuery(‘option:first’, select).val());
‘option’ not ‘options’