Chapter 12: Document Object Model (DOM): Objects and Collections
An HTML5 element inside another element is a _________ of the containing element.
child
Which of these is the method of the window object that stops repetitive calls to a method?
clearInterval
Which of the following is the proper way to dynamically access the background color?
document.body.style.backgroundColor
What is the significance of the second function argument in the following line? window.setInterval( "run()", 100 );
The value sets how often to run the function.
The fifth link on a page can be accessed using?
links.item(4) and links[4]
In the statement node.replaceChild(node2, node3), ________ replaces _________
node2 and node3
Function getElementById returns a(n)___________.
object
The elements in a web page are represented by a(n) ________.
object hierarchy
Which of the following is not a DOM collection?
roots