[jQuery] Basic selectors question

2009-11-17 Thread HB
Hey, I started learning JQuery today. I got what (EF) selector does but I didn't digest what (E+F) and (E~F) do. Thanks for help and time.

Re: [jQuery] Basic selectors question

2009-11-17 Thread Michel Belleville
Consider this setting : blah / bloh / $('blah + *') will select bloh / $('bloh ~ *') will select blah / Michel Belleville 2009/11/17 HB hubaghd...@gmail.com Hey, I started learning JQuery today. I got what (EF) selector does but I didn't digest what (E+F) and (E~F) do. Thanks for help

Re: [jQuery] Basic selectors question

2009-11-17 Thread Jonathan Vanherpe (T T NV)
HB wrote: Hey, I started learning JQuery today. I got what (EF) selector does but I didn't digest what (E+F) and (E~F) do. Thanks for help and time. They're mostly the same ones as in css and they're all listed here: http://docs.jquery.com/Selectors Jonathan -- Jonathan Vanherpe -

[jQuery] Basic Selectors Question

2008-05-13 Thread PaulF
Hi, I have what I think is probablt a pretty easy question, but I have tried numerous selctors without getting the correct id. I have a form which is dynamically generating form fields and tables all over the place. I need to pull an ID of the last table inside of a particular td. I have