If I have following jQuery selector specified :
$("div#myDivId .myClass")
What is the exact selection order? Will this first select a div with an ID myDivId
and then find all elements with myClass
inside it or first select all elements with myClass
and then filter out rest which are not inside myDivId
.