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 the l
and a
attributed elements? 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?
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?