[jQuery] Re: find by partial id

2008-05-13 Thread vladv
Thanks all for the reply, $("[EMAIL PROTECTED]'lblName']") doesn't work (also tried to replace span with input) How would I use <%=lblName.ClientID %> in jQuery statement? Thank you again On May 11, 5:39 pm, "Armand Datema" <[EMAIL PROTECTED]> wrote: > Hi > > I think you are using aps.net so

[jQuery] Re: find by partial id

2008-05-11 Thread Armand Datema
Hi I think you are using aps.net so you could try the asp.net call to get a cleintid <%=lblName.ClientID %> On 5/11/08, steve_f <[EMAIL PROTECTED]> wrote: > > > you can use the following > $("[EMAIL PROTECTED]'lblName']") > > > > On May 11, 8:37 am, vladv <[EMAIL PROTECTED]> wrote: > > hello >

[jQuery] Re: find by partial id

2008-05-11 Thread steve_f
you can use the following $("[EMAIL PROTECTED]'lblName']") On May 11, 8:37 am, vladv <[EMAIL PROTECTED]> wrote: > hello > please help me with a simple question > > i have a control which is rendered couple of times (gridview) and gets > some id which i know only part of, for example if i named

[jQuery] Re: find by partial id

2008-05-11 Thread darren
could you try to build up the whole id name with a string variable? var full_id = knownCommonPart + chaingPart; jQuery("#" + full_id).doStuff(); On May 11, 12:37 am, vladv <[EMAIL PROTECTED]> wrote: > hello > please help me with a simple question > > i have a control which is rendered couple of