At times, I like to utilize jQuery for testing my CSS. Occasionally, I will use a basic selector (within the Chrome Web Developer console)
For example, typing something like $('.topclass div')
returns
e.fn.e.init[125]
Which is a JavaScript object
containing nodes. The selector can range from simple to complex.
What causes this result? Could it indicate a missing tag or an incorrect selector?
Edit: The HTML consists of nested divs (could it be including child divs as well?)