Skip to content

Instantly share code, notes, and snippets.

@dantoncancella
Created January 18, 2013 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dantoncancella/4564386 to your computer and use it in GitHub Desktop.
Save dantoncancella/4564386 to your computer and use it in GitHub Desktop.
jQuery 'plugin' to reset a form
(function($){
$.fn.reset = function () {
$(this).each (function() {
this.reset();
});
}
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment