Home »
MCQs »
jQuery MCQs
Which is the correct jQuery selector to select current HTML element?
18. Which is the correct jQuery selector to select current HTML element?
- $(this)
- $(cur)
- $(.this)
- $(#this)
Answer: A) $(this)
Explanation:
The $(this) selector is used to select current HTML elements.