Es6 Append Html Code Example


Example 1: JavaScript append text to div


var div = document.getElementById('myElementID');
div.innerHTML += "Here is some more data appended";

Example 2: appendchild javascript


const parent = document.createElement('div');
const child = document.createElement('p');
// Appending Node Objects
parent.append(child) // Works fine
parent.appendChild(child) // Works fine
// Appending DOMStrings
parent.append('Hello world') // Works fine
parent.appendChild('Hello world') // Throws error

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy