Look at the following selector: $("p#intro"). What does it select?
Look at the following selector:
$("p#intro")
What does it select?
From the above selector, it selects all the p elements with ID intro. p is an element in HTML and the # tag indicates the ID of the element.
Which jQuery method is used to remove selected elements?
Look at the following selector: $(":disabled"). What does it select?
Which jQuery method returns the direct parent element of the selected element?
The jQuery animate() method can be used to animate ANY CSS property?