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.
<INPUT type="IMAGE" value="SUBMIT" src="myImage.gif" width="20" height="10" title="Submit Details" />
<script language="javascript">
<!--
if (document.images) {
var initial = new Image();
initial.src = 'path/to/orig_image.gif';
var over = new Image();
over.src = 'path/to/over_image.gif';
}
function ChangeImg(id,name){
document.getElementById(id).src = eval(name + ".src");
}
-->
</script>
<INPUT id="submitter" type="IMAGE" value="SUBMIT" src="path/to/orig_image.gif" title="Submit Details" onmouseover="ChangeImg('submitter','over');" onmouseout="ChangeImg('submitter','initial');" />