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