[jQuery] Re: How to select all tag with certain class
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
$("li.highlight-with-red") wouldn't wors?