DigitalBoy
Programmer
How do I set the focus on a hidden form object when a page is loaded?
- DB dgtlby@excite.com
Administrator
UBB Developers Network
- DB dgtlby@excite.com
Administrator
UBB Developers Network
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.
<div id="mySplash"><img src="yourIMG.gif"></div>
<head>
<script>
function splash()
{
t=setTimeout("hideIt()",8000)
}
function hideIt()
{
document.all.mySplash.style.visibility="hidden";
}