Nodejs HTML Element Append append(child)

Here you can find the source of append(child)

Method Source Code

HTMLElement.prototype.append = function append(child) {
    this.appendChild(child);/*from w  w w  .j a  v a  2  s  . co  m*/
    return this;
};

Related

  1. append(element)
    HTMLElement.prototype.append = function(element){
        this.appendChild(typeof element === 'string' ?
            document.createTextNode(element) : element);
    };
    
  2. appendAfter(element)
    Element.prototype.appendAfter = function(element) {
      return element.parentNode.insertBefore(this, element.nextSibling);
    }, false;
    
  3. appendBefore(element)
    Element.prototype.appendBefore = function(element) {
      return element.parentNode.insertBefore(this, element);
    }, false;
    
  4. appendFirst(el)
    HTMLElement.prototype.appendFirst = function(el) {
      if (!el) return;
      if (this.firstChild) {
        this.insertBefore(el, this.firstChild)
      } else {
        this.appendChild(el);