If you want elements that have a "next" OR an "open" class, then it
would be

$ ('.next, .open');

If you want elements that have a "next" AND an "open" class then it
would be

$('.next.open');

On Sep 3, 1:20 am, xni <[EMAIL PROTECTED]> wrote:
> Hello,
> I would like to select elements with two class (eg: <h5 class="next
> open">. I tried $(".next open") but it failed. Does anyone know how to
> do it?
> Thanks in advance. Xavier

Reply via email to