The HTML and JS Document Object Model

HTML creates a document, JavaScript can access that document through a data structure called the DOM (or Document Object Model). This structure allows us to access each individual element as an object with a parent/child relationship or directly by ID:

Straight JavaScript

var thediv = document.getElementById('mydiv');
thediv.innerHTML = "soemthing else";
			

Some things that you might want to look over: visibility and createElement and appendChild

Manipulating Style Attributes

Using the DOM, you can manipulate any aspect of an HTML Element, including it's CSS derived styles:

var thediv = document.getElementById('mydiv');
thediv.style.backgroundColor = "red";
			

More Information

JavaScript HTML DOM

Events

JavaScript in the browser is very often event driven. This means that we can specify code to run when an event takes place. Some of these are driven by the browser doing it's thing such as loading a page and some are driven by user interaction such as clicking a link or hovering over an element. Regardless of the type of event, we use the "addEventListener" method on all of the DOM elements to specify what to listen for and what code to run when the event is triggered.

element.addEventListener('event name', functionToRun);

functionToRun() {
	// Code to execute
}
				
JavaScript HTML DOM EventListener

load

The load event is very important as it is a way to specify what to do when a document is done loading, it also signifies when it is safe to call elements on the DOM:

function init() {
	var thediv = document.getElementById('mydiv');
	alert(thediv.innerHTML);
}				
window.addEventListener('load', init);				
				

mouseover

var thediv;
function init() {
	thediv = document.getElementById('mydiv');
	thediv.addEventListener('mouseover', hideit);
}			

function hideit() {
	thediv.style.visibility = "hidden";
}	
window.addEventListener('load', init);				

Many many more

Wikipedia DOM Events

Media Elements and the Canvas

Audio and Video

Canvas