Skip to content

Instantly share code, notes, and snippets.

@christopherjenkins
Created November 5, 2012 06:53
Show Gist options
  • Save christopherjenkins/4015705 to your computer and use it in GitHub Desktop.
Save christopherjenkins/4015705 to your computer and use it in GitHub Desktop.
Clears Inputs
function clearfilter() {
$('.searchbox').find('input:text, input:password, input:file, select, textarea').val('');
$('.searchbox').find('input:radio, input:checkbox').removeAttr('checked').removeAttr('selected').trigger('change');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment