The isVisible()
method checks if a node is set to be visible.
- It returns
true
if the node is visible (meaning it will be rendered) false
if the node is not visible (meaning it will not appear in the rendered HTML output).
Despite being invisible, the node can still be accessed, queried, and manipulated in the DOM.
Description
public AbstractNode::isVisible(): bool
Parameters
None
Return Value
Returns a boolean value:
true
: The node is visible and will be rendered.false
: The node is not visible and will not be rendered, but remains in the DOM.
Exceptions
None