I am trying to use jQuery to do a simple thing: clear the input fields of a group of input field within a div whenever the form loads, or if the user changes a picklist; but
Couple issues that I see. fetch_results is a class, not an Id and the each function doesn't look right.
$('.fetch_results:input').each(function() {
$(this).val('');
});
Just be sure to remember that if you end up with radios or check buttons, you will have to clear the checked attribute, not the value.