Skip to content Skip to sidebar Skip to footer

Reset Text Fields In Form Fieldset

I have a form with two fieldsets which in turn have input text boxes.

Solution 1:

You can select elements under fieldset by selecting id of fieldset

$("#xyz > input").val("");

DEMO

Post a Comment for "Reset Text Fields In Form Fieldset"