appendChild
local name = window.input("What is your name?","My name is ...")
local elm = document.createNode("p",{style="color:red"},string.format("Welcome %s",name))
document.querySelector("body").appendChild(elm)Last updated
local name = window.input("What is your name?","My name is ...")
local elm = document.createNode("p",{style="color:red"},string.format("Welcome %s",name))
document.querySelector("body").appendChild(elm)Last updated