Nodejs HTML Element Hide hide()

Here you can find the source of hide()

Method Source Code

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

Related

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