hey, quick question, i couldn't find anything on the web. I have a parent div and a child div inside of it. to select it with css you would say:
#parent .child {}
In jquery I have a var for my parent element, however how can i select the child with this? I know it's easy to create a new var, i'm just curious if it's possible?
var Parent = $('#parent');
Parent.click(function() {
$(this > '.child').hide();
thank you

E Fmatches not just child elements but any descendant element ofE. For the children only useE > F. – Gumbo Dec 20 '10 at 8:37