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.

here is my html

<div id="l">l</div>
<div id="a">a</div>
<div id="i">i</div>

how to change the color of only l and a. i searched for a selector with OR something like this

$(function(){
    $('div[id=l,a]').css('color','red');
});

it's not working is there something like that in jquery ?

Thanks

EDIT Thank you guys it's working now

$('[id=l], [id=a]').css('color', 'red');

but what if i want to search for those ids inside a div like $('[id=l], [id=a]','div') this doesn't work how should i do it ?

thank you

share|improve this question

1 Answer

up vote 12 down vote accepted
$(function(){
    $('#l, #a').css('color','red');
});

Fiddle: http://jsfiddle.net/maniator/2Xuat/

share|improve this answer
that was quick, Thank you – ra_htial Jun 27 '11 at 19:30
@ra_htial, no problem ^_^ – Neal Jun 27 '11 at 19:30
1  
Technically that's an id selector. Attribute selector would be $('[id=l], [id=a]').css('color', 'red'); just in case you need it. – Steve Robbins Jun 27 '11 at 19:41
1  
@imoda.... use an id selector for ids. dont use attr.... – Neal Jun 27 '11 at 19:41
1  
@ra_htial: I think you mean $('.inputs[name="something"], .inputs[name="somethingElse"]'). Or use filter: $('.inputs').filter('[name="something"], [name="somethingElse"]') – Felix Kling Jun 27 '11 at 20:00
show 10 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.