jQuery Chosen plugin without search field

javascript, jquery, jquery-chosen, jquery-plugins

Solution

Well I tried with the documentation as well and no luck, so I finally fixed to this

$('.chzn-search').hide();

I do the above after I call chosen. Hope this helps

Problem

Not sure if this has been covered somewhere, but I couldn't find it in the documentation, and was wondering if it'd be possible to not include the search input box with the jQuery chosen plugin (used to style select inputs). Specifically I'd like to use the standard select one without it. http://harvesthq.github.com/chosen/

Original source