jQuery Dropdown Check List

The Dropdown CheckList jQuery widget transforms a regular <SELECT> html element into a combo box with a text display of the selected elements and a dropdown of options. The plugin is hosted on SourceForge.

This page includes the minimal components needed to activate DDCL and applies styling based on the ThemeRoller smoothness theme.

<select id="s1" multiple="multiple"> <option>Low</option> <option>Medium</option> <option>High</option> </select> <script>$(document).ready(function() { $("#s1").dropdownchecklist(); });</script>
A standard SELECT: A DDCL SELECT: