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 (E>F) 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 - Tallie

Re: [jQuery] Basic selectors question

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