Look at the following jQuery selector: $("div#intro .head). What does it select?1.The first element with id="head" inside any div element with class="intro"
2.All elements with class="head" inside the first div element with id="intro"
3.All div elements with id="intro" or class="head"
4. None