Skip to content

Instantly share code, notes, and snippets.

@sdvg
Created January 7, 2013 14:15
Show Gist options
  • Save sdvg/4475277 to your computer and use it in GitHub Desktop.
Save sdvg/4475277 to your computer and use it in GitHub Desktop.
make form action "reset" work for chosen-fields
//make form action "reset" work for chosen-fields
$('form input[type="reset"]').click(function(){
$(this).closest('form').find(".chzn-select").val('').trigger("liszt:updated");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment