Skip to content

Instantly share code, notes, and snippets.

@andru255
Created July 15, 2013 20:01
Show Gist options
  • Select an option

  • Save andru255/6002933 to your computer and use it in GitHub Desktop.

Select an option

Save andru255/6002933 to your computer and use it in GitHub Desktop.
clean fields de un wrapper que sea como form
$(':input','#myform')
.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