issues
search
puddlejumper26
/
blogs
Personal Tech Blogs
4
stars
1
forks
source link
DOM Scripting Web Design with JavaScript and the DOM 2nd Edition
#168
Open
puddlejumper26
opened
4 years ago
puddlejumper26
commented
4 years ago
Finished
General
methods
DOM CORE methods
getElementById
getElementsByTagName
getElementsByClassName
getAttribute
setAttribute
childNodes
nodeType (1: element ; 2: attribute; 3: text)
nodeValue
firstChild => node.childNodes[0]
lastChild => node.childNodes[node.childNodes.length - 1]
window.onload
window.addLoadEvent
document.write
innerHTML
document.createElement(nodeName) => e.g. 'p'
parent.appendChild(child)
document.createTextNode(text) => e.g. a string
parentElement.insertBefore(newElement, targetElement)
methods
DOM CORE methods