JavaTurkey
Technical User
How do you do it? I need all the text to appear, and then the images and javascripts. Any ideas? Thanks...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<body>
<img src="blank.bmp" name="a">
<img src="blank.bmp" name="b">
<img src="blank.bmp" name="c">
</body>
<script>
<!--
onload = loadImages;
function loadImages() {
a.src = "yourimage.jpg";
b.src = "anotherimage.jpg";
c.src = "finalimage.jpg";
}
//-->
</script>