Jump to content

Exam 98-382: Introduction to Programming Using JavaScript/Interact with the Document Object Model

From Wikiversity

This lesson covers the Document Object Model (DOM), HTML events, HTML document output, and HTML document interaction.[1]

Readings

[edit | edit source]
  1. Mozilla: Manipulating Documents

Activities

[edit | edit source]
  1. W3Resources: DOM Exercises

Identify and construct the Document Object Model (DOM) tree

[edit | edit source]

window; document; body; other HTML elements

Identify and handle HTML events

[edit | edit source]

onchange; onmouseover; onload; onclick; onmouseout; onkeydown

Complete and debug code that outputs to an HTML document

[edit | edit source]

innerHTML; document.write

Complete and debug code that locates, modifies, and adds HTML elements and attributes

[edit | edit source]

getElementByld; getElementsByTagName; getElementsByClassName; setAttribute; createElement

See Also

[edit | edit source]

References

[edit | edit source]