On Sep 4, 2:42 pm, Pops <[EMAIL PROTECTED]> wrote:
> You can so do multiple selects, like find all divs and h3
>
>   $('div h3')
>
> but if you use the comma:
>
>   $('div,h3')
>
> that says find the H3 tag that is within div,  I think <g>

I knew I had that backwards!

  $('div h3')  finds all h3 within div tags

  $('div,h3)  finds all div and all h3 tags

--
HLS!

Reply via email to