Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Node refers to an HTML element.

HTML element: <p id="fun">test</p>

JS to get a pointer to that element: var node = document.getElementById("fun");

node.id = "really_fun";

How that affects the HTML element: <p id="really_fun">test</p>



Thanks. I am also reading this http://www.quirksmode.org/dom/intro.html




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: