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
