Write a jQuery statement to remove all <p> elements with class="prog"?
Options:
Explanation:
The jQuery statement to removes all
elements with
class="prog" is:
Tags:
jQuery
Answer:
Write a jQuery statement to remove all <p> elements with class="prog" $("p").remove(".prog");.