Test your knowledge on jQuery Traversing Methods Quiz (parent, parents, closest, children, find, siblings, next, prev) — Practice for Interviews. This quiz contains 10 questions.
Level: Beginner
Topic: traversing
Choose the correct statement
In jQuery, what does `parent()` return when called on a selection?
Example context:
```html
<div class="card">
<h2 id="title">Hello</h2>
</div>
```