Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/*Change the scrollbar color*/
function Func1()
{
document.body.style.scrollbarFaceColor="Green"
}
function Func1Delay()
{
setTimeout("Func1()", 3000);
document.body.style.scrollbarFaceColor="Yellow"
}
function Func2Delay()
{
setTimeout("Func1Delay()", 3000);
document.body.style.scrollbarFaceColor="Blue"
}
function Func3Delay()
{
setTimeout("Func2Delay()", 3000);
Func1Delay();
}
window.onload = Func1Delay();