[jQuery] Re: Selector help needed

2009-07-24 Thread Michael Lawson
Subject:[jQuery] Re: Selector help needed sorry the code is Link 1 Link 2 Link 2.1 Link 2.2

[jQuery] Re: Selector help needed

2009-07-24 Thread iceangel89
sorry the code is Link 1 Link 2 Link 2.1 Link 2.2 On Jul 24, 9:20 pm, iceangel89 wrote: > with the markup like: > >
    >    
  • Link 1
  • >    
  • >         Link 2 >        
      >        

[jQuery] Re: Selector help needed

2009-04-28 Thread Jeffrey Kretz
t can be caused by just such a closure. JK -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ Sent: Tuesday, April 28, 2009 7:35 PM To: jQuery (English) Subject: [jQuery] Re: Selector help needed You'll have to build up the

[jQuery] Re: Selector help needed

2009-04-28 Thread MorningZ
You'll have to build up the selector as a string when you call "setTimeout", that function is run out of the context of being within that .each statement so you'll have to do something like (and there's many ways of doing this, i'll just show quick and easy), and yeah, the 's will have to ha

[jQuery] Re: Selector help needed

2008-05-28 Thread Ariel Flesler
$('tr.child1 input.inputbox') or just $('tr.child1 input:text') The last allows you to put aside the classes if you don't need them for something else. And actually, if you have no other inputs.. then you can remove the .inputbox / :text parts. You should add type="text" to the inputs. Cheer

[jQuery] Re: Selector help needed

2008-05-28 Thread andyGr
I have fixed it as $j('tr.child1 td:eq(1) input') The only question is how to select ALL inputboxes valies of tr.child1. Now it selects only the 1st tr.child. Any ideas? -- View this message in context: http://www.nabble.com/Selector-help-needed-tp17508515s27240p17510366.html Sent from the j

[jQuery] Re: Selector help needed

2008-05-28 Thread PeterAce
did you try $(".child1 input[value=Gary]")? On May 28, 11:51 am, andyGr <[EMAIL PROTECTED]> wrote: > Hi All, > > This is my DOM structure: > >         >                         First Name: >                         value="John" /> >         >         >                         Middle Name: >