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.
function changeBG(obj,img){
if (document.all){
obj.style.backgroundImage=img;
} else if (document.layers){
obj.style.background=img;
}
}
<table>
<tr><td onmouseover=changeBG(this,'test.gif') onmouseout=changeBG(this,'test.gif')> </td></tr>
</table>