1 2 3 4 5 6 7 8 9 10 11 12 13 14
<html> <script> function setScreenshotUrl(url) { document.getElementById('target').src = url; } </script> <body> Image here: <p> <img id="target" src="white.jpg" width="640" height="480"> <p> End image </body> </html>