vote up 2 vote down star
2

I've got an HTML select box that I need to style. I'd prefer to use just CSS but if I have to I'll use jQuery to fill in the gaps.

Can anyone recommend a good tutorial or plugin?

I know, Google, but I've been searching for the last two hours and I'm not finding anything that meets my needs.

It needs to be:

  • Compatible with jQuery 1.3.2
  • Accessible
  • Unobtrusive
  • Completely customizable in terms of styling every aspect of a select box

Does anyone know anything that will meet my needs?

flag

you mean you want a customizable dropdown (built in jquery), right? because select boxes are not even browser objects (they are platform objects), very simple, very raw, and you cannot style much of it (you cannot style the borders for instance) – Ayyash Jul 2 at 3:06

2 Answers

vote up 4 vote down check

I've seen some jQuery plugins out there that convert <select>'s to <ol>'s and <option>'s to <li>'s, so that you can style it with CSS. Couldn't be too hard to roll your own.

Here's one: http://www.brainfault.com/2008/02/10/new-release-of-jquery-selectbox-replacement/

Use it like this:

$('#myselectbox').selectbox();

Style it like this:

div.selectbox-wrapper ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
}
div.selectbox-wrapper ul li.selected { 
  background-color: #EAF2FB;
}
div.selectbox-wrapper ul li.current { 
  background-color: #CDD8E4;
}
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:2px;
  cursor:pointer;
}
link|flag
I tried this version initially but the DIV is not positioned relative to where the select box is. Instead it is positioned hard to the left. – dougoftheabaci Jul 2 at 4:16
I haven't used this myself. The demo (brainfault.com/demo/selectbox/0.5) for it looks fine. Look around for other implementations. I know I've seen several other plugins that do this. – Mark A. Nicolosi Jul 2 at 4:51
vote up 2 vote down

You can style to some degree with CSS by itself

select {
    background: red;
    border: 2px solid pink;
}

But this is entirely up to the browser. Some browsers are stubborn.

However, this will only get you so far, and it doesn't always look very good. For complete control, you'll need to replace a select via jQuery with a widget of your own that emulates the functionality of a select box. Ensure that when JS is disabled, a normal select box is in it's place. This allows more users to use your form, and it helps with accessibility.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.