Which is the correct jQuery statement to get the text content of an HTML element having id "notification"?
Options:
Explanation:
The jQuery statement
$("#notification").text() will return the text content of the HTML document having id "notification".
Tags:
jQuery
Answer:
Which is the correct jQuery statement to get the text content of an HTML element having id "notification" $("#notification").text().