I know there is a way to change a DIV HTMT text using javascript, but is there any way to change the DIV background image? or background color?
You should check out the use of document.getElementById().style - that's should point you in the right direction. Just search google and you'll find lots of results.
here is the list: document.getElementById("div_id").style.backgroundColor = "#ff0000"; document.getElementById("div_id").style.backgroundImage = "url(image_url)"; document.getElementById("div_id").style.backgroundPosition = "top right";