dropSelect

A jQuery drop down select box plugin

View project on GitHub

The select box below has been transformed into a dropSelect box.

No Selection

Code used to initialize:

$('#test').dropSelect({
    callBack: function(value) {
        $('#selectedValue').text(value + " selected");
    },
    formatter: function(text) {
        return text.replace("(","<small>[").replace(")","]</small>");
    },
    width: "300px"
});

All styles are customizable via CSS!

For more information, please download the package and play with the included demo.

Return to dropSelect plugin page