How would you change the background colour of a div with the id "colourme" to purple?

var div=document.getElementById("colourme"); div.style.backgroundColor = "purple"

GH

Related Javascript Mentoring answers

All answers ▸

What is the difference between global and local variables?


What does the document.onload() function do and why is it useful?


I've just heard about objects. How do I use them and do they work with Arrays?


If I do var a=3 and var b=4 and then do var c=a+b it tells me the answer is 34. Why?