There is a <pre> element, write a jQuery statement to get it's parent?
Options:
Explanation:
The correct jQuery statement to get the direct parent of a
tag is:
Tags:
jQuery
Answer:
There is a <pre> element, write a jQuery statement to get it's parent $("pre").parent();.