ADVANCED JAVASCRIPT
7 Differnt Background Color <!DOCTYPE html> <html> <head><title>Backgroung color javascript program</title> <script type="text/javascript"> function fun1() { document.bgColor="blue"; window.setTimeout("fun2()",2000); } function fun2() { document.bgColor="yellow"; window.setTimeout("fun3()",2000); } function fun3() { document.bgColor="red"; window.setTimeout("fun4()",2000); } function fun4() { document.bgColor="green"; window.setTimeout("fun5()",2000); } function fun5() { document.bgColor="orange"; window.setTimeout("fun6()",2000); } functi...