ftp://192.168.1.23:3721/
var X = document.getElementById("intro");
var x = document.getElementsByTagName("p");
var x = document.getElementsByClassName("intro");
var x = document.querySelectorAll("p.intro");
element.innerHTML = new html content || Exam:- object.innerHTML/.innerText/.textContent = "
Dog
";
element.attribute = new value || Exam:- object.src = "landscape.jpg"; element.style.property=newstyle || Exam:- object.style.color="blue";
element.setAttribute(attribute, value) || Exam:- object.setAttribute("style", "background-color: red;"); element.removeAttribute(attributename) || Exam:- object.removeAttribute("href");
var element = document.getElementById("div1");
element.classList.add("otherclass");
element.classList.remove("otherclass");
var d = document.getElementById("div1");
d.className += " otherclass";
Click the button to open a new window called "MsgWindow" with some text.