On Sep 4, 2:53 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote:

> One issue though...$('#foobar') would only return the first occurrence of
> foobar because it uses getElementbyID which returns the first occurrence.
> That's desired behavior as there should only ever be one ID of a certain
> name per page.

Yes,  $('#foobar') returns the 1st one, but you can have as many
id="foobar" your applications needs and use this to find them all:

   $('[EMAIL PROTECTED]')

--
HLS

Reply via email to