Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to style disabled <select>elements to make them look like they're enabled. Can someone help?

PS. I am all-too-aware of the downsides of doing this sort of thing vis a vis HCI principles etc., but its a requirement so I've got to do it if it is possible ...

Thanks.

EDIT:

@AlexThomas' method works well when the elements are disabled in HTML code but unfortunately I'm doing the disabling/enabling with JQuery:

<select class='dayselector'>
    <option>Monday</option>
    <option>Tuesday</option>
    <!-- .... etc. -->
</select>

$(".dayselector").attr("disabled",true);

$(".dayselector").attr("disabled",false);

So the selector:

$(".dayselector")  //works and gets all the selects

and

$(".dayselector option")  //works and gets all the selects' option items

but
$(".dayselector [disabled='true']") //doesn't return anything.

and

`$(".dayselector [disabled='false']")  //doesn't return anything.

Is there something I'm missing?

share|improve this question

3 Answers

up vote 6 down vote accepted

Using jquery:

$('option[disabled="true"]').each(function () {
                 $(this).attr('style', 'color:red');
});

check it in action here http://jsfiddle.net/GfNve

share|improve this answer
You Sir are a &star;! I only wish I could give you more votes :-) Many thanks, looks ace! – 5arx Feb 18 '11 at 17:07
You're welcome. Good luck with the rest of your development. – Alex Thomas Feb 18 '11 at 17:20
Damn it. It works well when the elements are disabled declaratively in HTML but not when they're disabled via JQuery which is what I'm doing. Please see edit above - would appreciate your suggestions. – 5arx Feb 24 '11 at 10:24
When you set the disable in jquery also set the style. – Alex Thomas Feb 24 '11 at 10:29
Ser-weeet! Many thanks :-) I'm not entirely sure why this makes a difference, but who cares, its working nicely. – 5arx Sep 9 '12 at 22:22
show 1 more comment

You could either go with

select[disabled] {  }

(not supported in <IE7)

or

select:disabled {  }

(not supported in <IE9)

share|improve this answer

Maybe you should use readonly instead of disabled. This will make the input enabled, but without allowing the user to change its value.

share|improve this answer
+1 sounds like the best way. – bažmegakapa Feb 18 '11 at 15:31
I suggested this, but the field needs to be uneditable directly - instead there are 'master' controls which set them. – 5arx Feb 18 '11 at 15:42
Aren't those master controls able to set readonly instead of disabled? :) – GolezTrol Feb 20 '11 at 1:31
I repeat: I don't want the selects to be editable directly. So readonly won't do it as they will remain changeable. – 5arx Feb 24 '11 at 10:43
2  
How are they changable if they are readonly? Readonly means uneditable. – GolezTrol Feb 24 '11 at 11:05
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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