The DOM is a mapping construct of all the relational objects and its attributes. The 'Document.Body' refers to the 'Document' object and its property the 'Body'. So if you want to wrap/create a jQuery object that reference a particular DOM element you can do this: $(document.body) .
How come you can't wrap a div element like this $(document.body.div) since div is a property of the body... I think there's something wrong with my logic or confusion with the terms.. Could someone clarify?
I suppose you could just do $(div) ( jquery(element) )