I have a bunch of select elements in a form with which I am using the Jquery Chosen plugin. How can I reset the form? The following does not work:
select
You could try this:
$('select').chosen('destroy'); $('select').prop("selectedIndex", -1); $('select').chosen();