<html>
<head>
<script type="text/javascript">
function showButton()
{
document.getElementById("btnContinue").style.visibility = "visible";
}
function hideButton()
{
document.getElementById("btnContinue").style.visibility = "hidden";
}
window.onload = function()
{
hideButton();
setTimeout('showButton()', 12000);
}
</script>
</head>
<body>
<input type="button" id="btnContinue" value="Continue" />
</body>
</html>
<head>
<script type="text/javascript">
function showButton()
{
document.getElementById("btnContinue").style.visibility = "visible";
}
function hideButton()
{
document.getElementById("btnContinue").style.visibility = "hidden";
}
window.onload = function()
{
hideButton();
setTimeout('showButton()', 12000);
}
</script>
</head>
<body>
<input type="button" id="btnContinue" value="Continue" />
</body>
</html>
No comments:
Post a Comment