Created
October 29, 2012 22:49
-
-
Save stringtheory/3977029 to your computer and use it in GitHub Desktop.
bl-content-form-select
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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