I'm using the code below to reset all of my values on a particular form.
$('#' + frm).closest('form').find("input[type=text], textarea").val("");
$('#' + frm).closest('form').find("input[type=password]").val("");
$('#' + frm).find('input[type=checkbox]:checked').removeAttr('checked');
$('#' + frm + ' input[type="radio"]').prop('checked', false);
It works fine for 95% of the cases but I would like to reset all of the Select box back to the selected index of 0. If there is a better or more efficient to do this entire process to reset all element types I'm open to the best suggestion. I need to reset the form because the same form will be used over and over again by the same person to add employment history.
Thanks for the input