Re: [jQuery] how to find an item when you only know part of the class name

2007-03-03 Thread John Resig
wrote: > > > > > ---Original Message--- > > From: Jake McGraw <[EMAIL PROTECTED]> > > Subject: Re: [jQuery] how to find an item when you only know part of the > > class name > > Sent: Mar 02 '07 23:19 > > > > Not sure if the source

Re: [jQuery] how to find an item when you only know part of the class name

2007-03-02 Thread Jake McGraw
; Subject: Re: [jQuery] how to find an item when you only know part of the class name > Sent: Mar 02 '07 22:46 > > You can reference any attribute using the following notation: > > [EMAIL PROTECTED] Starts with > [EMAIL PROTECTED] Ends with > [EMAIL PROTECTED] equa

Re: [jQuery] how to find an item when you only know part of the class name

2007-03-02 Thread dalvarado
> ---Original Message--- > From: Jake McGraw <[EMAIL PROTECTED]> > Subject: Re: [jQuery] how to find an item when you only know part of the > class name > Sent: Mar 02 '07 23:19 > > Not sure if the source is like this too, but you haven&#x

Re: [jQuery] how to find an item when you only know part of the class name

2007-03-02 Thread dalvarado
> ---Original Message--- > From: Jake McGraw <[EMAIL PROTECTED]> > Subject: Re: [jQuery] how to find an item when you only know part of the > class name > Sent: Mar 02 '07 22:46 > > You can reference any attribute using the following notation:

Re: [jQuery] how to find an item when you only know part of the class name

2007-03-02 Thread Jake McGraw
You can reference any attribute using the following notation: [EMAIL PROTECTED] Starts with [EMAIL PROTECTED] Ends with [EMAIL PROTECTED] equals [EMAIL PROTECTED] contains So for your problem... $("[EMAIL PROTECTED]") Hope this helps, - jake On 3/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> w

[jQuery] how to find an item when you only know part of the class name

2007-03-02 Thread dalvarado
Hi, I have a DIV whose ID I know. Within that DIV is a table with a table cell which either has a class beginning with the word "title" and followed by an integer. I would like to reference the text within that table cell. What is the easiest way to get a reference to this cell? Thanks, - D