<!DOCTYPE html><html><head><title>Document</title></head><body><h1id="title">Hello World</h1><buttononclick="change()">Change</button><script>consthead=document.getElementById("title");console.log(head.innerText);constheading=document.createElement("h1");heading.innerText="Welcome to Javascript";document.body.appendChild(heading);console.log(heading);consth=document.createElement("h2");h.innerText="Welcome to DOM";document.body.appendChild(h);console.log(h);h.remove();// document.body.removeChild(h);functionchange(){head.innerText="Bye World "}</script></body></html>
<!DOCTYPE html><html><head><title>Document</title></head><body><h1id="h1"></h1><buttononclick="create()">Create</button><script>constheading=document.createElement("h1");heading.innerText="Welcome to Javascript";document.body.appendChild(heading);console.log(heading);document.body.insertBefore(heading,document.getElementById("h1"));consth=document.createElement("h2");h.innerText="Welcome to DOM";document.body.appendChild(h);console.log(h);functioncreate(){consthead=document.getElementById("h1");console.log(head);head.innerText="Hello World "}</script></body></html>
Top comments (0)