2020.2

Table Of Contents
Tip
To get the previous sibling, use previous() (see "prev()" on page881).
What if there are no siblings?
If you call prev() or next() on a collection of elements (either "results" on page929 or the
result set of "query()" on page804), the function will return a collection of siblings. If none of the
elements has a previous or next sibling, the collection will be empty. Actions performed on an
empty collection will simply have no effect.
If you call prev() or next() on a single element (this in an 'Each matched element' script), and
the element has no previous or next sibling, the function returns null. Performing an operation
on a null value will result in an error, which means that the rest of the script won't be executed.
In this case, it is useful to check the return value, unless it's certain that it will never be null.
Example
Assume that there are three consecutive paragraphs in a Box and that the second of those
paragraphs has an ID that matches the selector of this script. The paragraph is stored in the
results object (see "results" on page929). The following script changes the font-weight of the
next paragraph - the third paragraph in the Box - to bold.
results.next().css("font-weight", "bold");
If the elements in results don't have siblings, this line of code will have no effect. It also won't
result in an error.
In an 'Each matched element' script you would first need to check the return value of this.next():
var nextSibling = this.next();
if nextSibling != null { nextSibling.css("font-weight", "bold"); }
overflows()
The overflows() method returns a boolean value indicating whether an HTML element
overflows its box boundaries.
Page 875