Skip to content

Instantly share code, notes, and snippets.

@nu7hatch
Created August 11, 2010 13:30
Show Gist options
  • Save nu7hatch/518973 to your computer and use it in GitHub Desktop.
Save nu7hatch/518973 to your computer and use it in GitHub Desktop.
Clear form values with jQuery
$(':input', '#form_id')
.not(':button, :submit, :reset, :hidden')
.val('')
.removeAttr('checked')
.removeAttr('selected');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment