Is there a simple way to iterate over the child elements in an element, say a div, and if they are any sort of input (radio, select, text, hidden...) clear their v
$('#div_id input[type=textbox], #div_id select, #div_id textarea').val(''); $('#div_id input[type=radio], #div_id input[type=checkbox]').prop('checked', false);
for jquery.