I think you can use a selector in a context attribute, but there isn't
much point in this situation.  If all of your ID's are unique (and
they should be), $('#make') is enough.  You don't need a context.
When you use the #, it's the same as doing document.getElementByID();

On May 23, 11:19 am, "Sean Catchpole" <[EMAIL PROTECTED]>
wrote:
> > $('#make','#redlineSelect').click( do something here)
>
> It's invalid to have a string as the second parameter to jQuery. Try
> this instead:
> $("#redlineSelect #make").click(...);
>
> ~Sean

Reply via email to