jQuery SimpleSelect is a lightweight, simple to use, and accessible way to style select elements using jQuery.
- Cleanup of JS file
- Renamed to remove version number
- Added copyright notice
- Changed
.bind
to.on
to support newer versions of jQuery - Added ability to pass multiple space separated classes to
containerClass
(e.g. 'simple-select is-special-version') - Added new option
slidingDoors: false
to allow you to turn off the additionalSPAN
created inside the container. - Added
.simpleSelect
namespace to all jQuery events used.
- Initial release
I wanted a select element that would look great when closed, would replicate standard browser functionality when open and maintain accessibility and keyboard navigation properties that the default select boxes have.
I couldn't find anything that fit my criteria which would be dead simple to implement, and work cross platform with validators and frameworks using Java and .NET, and could be simply added to enterprise level CMS systems with minimal effort.
The jQuery code wraps a standard select element in a span.
It then adds another span to replicate the select element's label, and sets the opacity of the select box to 0
Because the select element is transparent, not hidden, when you interact with it (be it click or keyboard based) you are actually interacting with the select element itself. The plugin then applies classes to indicate what state the select element is in.
On open, you see the default dropdown that you would see when you use the default select element. Yes this means that you can't style it, but that's a very small price to pay for a beautiful looking select box, that's fully keyboard accessible, and dead easy to implement.
You just need to use a standard select box element
$(function(){
$('select').simpleSelect();
});
Or you can add options to override the classes used by the plugin
$(function(){
$('select').validation({
containerClass: 'simple-select',
labelClass: 'simple-label',
focusClass: 'focus',
slidingDoors: true
});
});
There are 4 options:
containerClass (string: 'simple-select'
)
class applied to the container wrapped around the hidden
SELECT
element.
labelClass (string: 'simple-label'
)
class applied to the label inside the container.
focusClass (string: 'focus'
)
class applied to the container on focus of the
SELECT
element.
slidingDoors (boolean: true
)
appends two
SPAN
elements around theSELECT
instead of one so so that the sliding doors method can be used.
This solution may work on other browsers as well. These are the ones that it has been tested on
- Microsoft Internet Explorer 7+
- Mozilla Firefox 4+
- Google Chrome 10+
- Apple Safari 5+