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
Kudos, Haresh! Small addition to uncheck checkboxes. (Use true to check all.)
$('#myDiv').children().find('input,select').each(function(){ $(this).val(''); $(this).attr('checked',false); });