Let suppose there are multiple <h3> elements in an HTML document, which is the correct jQuery statement to get the last <h3> element?
Options:
Explanation:
The correct jQuery statement to get the last
element is:
Tags:
jQuery
Answer:
Let suppose there are multiple <h3> elements in an HTML document, which is the correct jQuery statement to get the last <h3> element $("h3").last();.