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 ▸

Suppose that you have a <p> element with an id of 'id1'. Use javascript to set the inner html of this element to 'hello!'


How are objects created in 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?


Find the sum of all multiples of 2 less than 10000