[jQuery] Re: Selector problem with $( "a[ajax\\:id='46']" )

2009-01-14 Thread jQuery Lover
Duplicate. See: http://groups.google.com/group/jquery-en/browse_thread/thread/e47ce13098a16ef/606e652153c624a2#606e652153c624a2 - Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 3:32 PM, naden wrote: > > I'm using jQuery 1.2.6 and having a

[jQuery] Re: Selector Problem with complicated element id

2008-09-29 Thread BB
Hi, look here at the bottom: http://docs.jquery.com/Selectors you may try something like this: var id = 'sec_ruler_widget_seclevel\\[' + checkElementId + '\\]'; var pic = $('#' + id)[0]; On 29 Sep., 15:03, Misha <[EMAIL PROTECTED]> wrote: > Hi, > > I am a newbie here so maybe my problem is not

[jQuery] Re: Selector problem

2008-03-27 Thread motob
Looks like you could do something like this: $('.exp').click(function(){ $(this).siblings('.helpCont').slideToggle('slow'); }); This is assuming that each .exp and .helpCont is going to be contained in its own .help parent div. On Mar 27, 12:25 pm, chronotype <[EMAIL PROTECTED]> wrote: > Hell