Background Color Refresh
<script>
function get()
{
//alert(Math.random(1)*1000000)
//document.bgColor=Math.random(1)*1000000
document.bgColor=Math.random(1)*1000000
t= setTimeout("get()",1000)
//setInterval("get()",1000)
}
<button id=b1 onclick=clearTimeout(t)> Stop <button>
<body>
Comments