<html>
<head></head>
<body>
<script>
var image1 = newImage();
image1.src = "./SkinnersLogo.png";
document.getElementById("d").innerHTML = image1;
</script>
<img id="d"> </img>
</body>
</html>
I have set the value of image 1, to a source. I have then tried to innerHTML this image, and then display it within an img tag. However, all I see is a blank screen on the HTML window. Does anyone know what I am doing wrong here? I cannot spot any mistakes, thanks.