Write a jQuery statement to remove all child elements only from the element having id "notif"?
Options:
Explanation:
The jQuery statement to remove all child elements only from the element having id "notif" is:
Tags:
jQuery
Answer:
Write a jQuery statement to remove all child elements only from the element having id "notif" $("#notif").empty();.