nextElementSibling

Gets the next sibling element of this element. E.g., if a {@code div} contains two {@code p}s, the {@code nextElementSibling} of the first {@code p} is the second {@code p}.

Element.swift:611
func nextElementSibling() throws -> Element?

This is similar to {@link #nextSibling()}, but specifically finds only Elements

<return>
<see>