Hah, ok.  I suppose I should have guess that one.

Thanks for pointing it out.


On Dec 9, 5:41 pm, "Hector Virgen" <[EMAIL PROTECTED]> wrote:
> You can add a second class to your CSS rule by appending another dot and the
> class name:
> // Finds child elements that contain both classes
> $('div').find('.class-one.class-two');
>
> -Hector
>
> On Mon, Dec 8, 2008 at 7:28 PM, mgl <[EMAIL PROTECTED]> wrote:
>
> > Hello again,
>
> > Does anyone know how (or if it is possible) to select elements by
> > multiple class names?
>
> > For example, given the following div elements:
>
> > <div class="class-one">
> > <div class="class-one class-two">
>
> > If I wanted to get all div elements that have *both* class-one and
> > class-two, the only straight-forward way I can think of is the
> > following:
>
> > $("div").filter(".class-one").filter(".class-two");
>
> > It would be nice if I could do this with a single expression
> > instead...is that possible?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery (English)" group.
To post to this group, send email to jquery-en@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-en?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to