Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Last active March 21, 2016 11:06
Show Gist options
  • Select an option

  • Save hsleonis/0aa9919d432fb459b0da to your computer and use it in GitHub Desktop.

Select an option

Save hsleonis/0aa9919d432fb459b0da to your computer and use it in GitHub Desktop.
Jquery reset form
/*
Method 1: Reset
*/
$('#create-user-form')[0].reset();
// or
$('#create-user-form').get(0).reset()
// or inline
<input type="button" onclick="this.form.reset();">
/*
Method 2: Trigger
*/
$('#create-user-form').trigger("reset");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment