Targeting the attributes propertyModifying elements as text

Using text content modifiers

  1. node.innerHTML : modifier le contenu entre les balises (le plus supporté)
  2. node.outerHTML : modifier le contenu ET les balises
  3. node.insertAdjacentHTML(InsertPoint, htmlText)
    1. InsertPoint : 'beforebegin', 'afterbegin', 'afterend', 'beforeend'