Using the DOM

Lets examine some of the applications of using javascript with the Dom.

The Document Object has several methods, one of which allows us to change the background colour of the web page.

Changing the background colour of a page

Add the following code to a web page

<body>
<a href='javascript:void(0);' onclick="javascript:document.body.style.backgroundColor='tan';">
Tan me</a>
</body>

Exercise
Create a web page using the code above.