I am using jQuery steps ( https://github.com/rstaib/jquery-steps/wiki ) in order to create step by step form to users to fill out. It works great, however I need to be able to r
You can use jQuery Form Plugin , Resetting or clearing your form is then very Easy
$('#myFormId').resetForm();
Or
$('#myFormId').clearForm();
Or only Special Fields
$('#myFormId .specialFields').clearFields();