change background image in body

You would need to use Javascript for this. You can set the style of the background-image for the body like so.

var body = document.getElementsByTagName('body')[0];
body.style.backgroundImage="url(http://localhost/background.png)";

Just make sure you replace the URL with the actual URL.

Leave a Comment