[jQuery] Re: select all grandchildren of a div

2009-07-23 Thread amuhlou
I'm not really sure what you are asking. Are you referring to the jQuery ui slider? If so, the jQuery UI google group is probably a better place to ask that question and search for threads where your question may have already been answered. http://groups.google.com/group/jquery-ui On Jul 23, 3:3

[jQuery] Re: select all grandchildren of a div

2009-07-23 Thread Krish
hi amuhlou, thank you for your quick response. with the same assumption is there any possibility to get all grandchildren in the handle property of jquery. On Jul 23, 12:11 pm, amuhlou wrote: > Assuming the grandchildren all have the class="grandchild" attribute, > you could use the find() me

[jQuery] Re: select all grandchildren of a div

2009-07-23 Thread amuhlou
Assuming the grandchildren all have the class="grandchild" attribute, you could use the find() method: $('div.parent').find(".grandchild") On Jul 23, 3:04 pm, Krish wrote: > Hey All, > > I have to select all my grandchildren of parent div. only the > grandchildren not either of children or gr