Skip to content

Instantly share code, notes, and snippets.

@nu7hatch
Created August 11, 2010 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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