Skip to content

Instantly share code, notes, and snippets.

@stringtheory
Created October 29, 2012 22:49
Show Gist options
  • Save stringtheory/3977029 to your computer and use it in GitHub Desktop.
Save stringtheory/3977029 to your computer and use it in GitHub Desktop.
bl-content-form-select
<select data-placeholder="-- Select a Color --" name="month" class="chzn-select grid_5">
<option></option>
<option value="01">Pink</option>
<option value="02">Red</option>
<option value="03">Magenta</option>
</select>
<!--Note: js to init without search, otherwise init is in general.js-->
<script type="text/javascript">
$(function() {
$('.chzn-select').chosen();
$('.chzn-search').hide(); // Hides the search box
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment