[jQuery] Re: How to select all tag with certain class

2008-07-25 Thread Richard D. Worth
Same as css. Where $(".highlight-with-red") // selects all elements with class, lis and ps $("li.highlight-with-red") // selects only lis with class - Richard On Fri, Jul 25, 2008 at 1:20 AM, Thalia <[EMAIL PROTECTED]> wrote: > > > I just want to select all LI with class="highlight-with-red",

[jQuery] Re: How to select all tag with certain class

2008-07-25 Thread apaella
$("li.highlight-with-red") wouldn't wors?