What\'s the difference between these two jQuery statements? They seem to do the same thing by getting all the children div tags.
$(\"#mainblock div\")
The first one will get all divs descendant of #mainblock. The second one will get all divs that are immediate children of #mainblock
div
#mainblock