Skip to content

Instantly share code, notes, and snippets.

@spalladino
Created June 13, 2011 18:58
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 spalladino/1023443 to your computer and use it in GitHub Desktop.
Save spalladino/1023443 to your computer and use it in GitHub Desktop.
Add reset function to jquery wrapped forms
$.fn.extend({
reset: function(){
return this.each(function(){
$(this).is('form') && this.reset();
})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment