A cross-browser, accessible alternative to the standard form element which can be fully customised with CSS
Stylish Select attempts to replicate the functionality of the browser default select box as closely as possible with support for keyboard navigation, and intelligent positioning.
Stylish Select aims to have a minimal code footprint and weighs in at just over 3KB when minified.
The Stylish Select can be styled with CSS in whatever way you like.
Getting/setting the value
//set value
$('#setVal').click(function(){
$('#my-dropdown5').getSetSSValue('Sit');
});
//get value
$('#getVal').click(function(){
alert('The value is: '+$('#my-dropdown5').getSetSSValue());
});
//add options to select and update
$('#addOptions').click(function(){
$('#my-dropdown6').append('').resetSS();
});
If you add or remove options from the initial select element on the page, be sure to call the .resetSS() method on the select to update the Stylish Select replacement.