IsHidden
Show
Toggle
HIDDEN means an element should not be visible but not removed from the DOM.
hide the Hidable.
This is acheived by adding a 'hidden' class name to an HTMLElement retrieved by id.
visible queries whether the Hidable is visible or not.
It retrieves an HTMLElement by id and checks whether it does not have a hidden class.
show the Hidable
This is acheived by removing a 'hidden' class name to an HTMLElement retrieved by id.
toggle the visibility of the Hidable.
Generated using TypeDoc
Hide