Nodejs Utililty Methods HTML Element Hide

List of utility methods to do HTML Element Hide

Description

The list of methods to do HTML Element Hide are organized into topic(s).

Method

hide()
Element.prototype.hide = function() {
  this.style.display = 'none';
};
hide()
Element.prototype.hide = function() {
  this.style.display = "none"
  return this
hide()
Element.prototype.hide = function() {
  this.addClass("hide");
  return this;