thanks, that pointed me in the right direction...
On Jun 4, 5:12 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> I can only think of somehow circumventing to use grouped selectors,
> e.g. search by class (which is ugly probably):
>
> $('.find-me').eq(0).addClass('found-it');
>
> or search by univers
I can only think of somehow circumventing to use grouped selectors,
e.g. search by class (which is ugly probably):
$('.find-me').eq(0).addClass('found-it');
or search by universal selector and filter by type afterwards:
$('body *').filter('h2, h4, p, ul').eq(0).addClass('found-it');
Not sure i
2 matches
Mail list logo