jQuery find all selects/dropdowns on the page and apply chosen jquery library

By.

min read

My profile

Share this:

[code:1:efdb4f041d] jQuery( document ).ready(function( $ ) {
$(“select”).each(function() {
$(this).chosen();
});
});[/code:1:efdb4f041d]

Chosen: http://harvesthq.github.io/chosen/

Share this:

Leave a Reply

Your email address will not be published. Required fields are marked *