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\")
$("#mainblock div")
Matches any div element that is a descendant of #mainblock.
$("#mainblock > div")
Matches any div element that is a child of #mainblock .
check http://www.w3.org/TR/CSS2/selector.html