Returns the first element that matches the selector by testing the element itself and traversing up through ancestors in element's layers.
up.fragment.closest()
will only match elements in the same layer as
the given element. To match ancestors regardless of layers, use up.element.closest()
.
The element on which to start the search.
The CSS selector to match.
element The matching element.
Returns null
or undefined
if no element matches in the same layer.