0
2.2kviews
Write a JavaScript code to change a background color using buttons.

Mumbai University > information technology > sem 4> Web Programming

Marks: 5M

Year : May16

1 Answer
0
25views

JavaScript code to change a background color using buttons Program:

<html>
 <head>
  <title> New Document </title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <script language="javascript">
function ChangeColor()
{
document.getElementById('btn1').style.backgroundColor='Red';
setTimeout("ChangeColor2()",2000);
}
  function ChangeColor2()
{
document.getElementById('btn1').style.backgroundColor='Pink';
setTimeout("ChangeColor3()",2000);
}
function ChangeColor3()
{
document.getElementById('btn1').style.backgroundColor='Green';
setTimeout("ChangeColor4()",2000);
}
function ChangeColor4() …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.