I would like to reset the values of one set of form fields which belongs to the same class. for example,
<input type="checkbox" name"abc" id="abc" class="class1">
<input type="text" name"abc1" id="abc1" class="class1">
<input type="checkbox" name"abc2" id="abc2" class="class1">
onclick of another checkbox, I would like to reset the above 3 fields. Please help.