Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to change the div background color on every
refresh..guys can u help me out.

Answer Posted / guest

Try with the following code.
<html>
<body onload="changeColor()">
<script type="text/javascript">
var color=new Array(6);
color[0]="green";
color[1]="#eeeeee";
color[2]="#99CCFF";
color[3]="lavender";
color[4]="pink";
color[5]="#669999";
function changeColor()
{
var ranNum= Math.floor(Math.random()*6);
document.getElementById('div1').style.backgroundColor=color[ranNum];
}
</script>
<div id="div1" name="div1"
style="height:500px;"><center>Changing Color of
div</center></div>
</body>
</html>

Is This Answer Correct ?    27 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Xplain is it possible to use com component in php?

877


How does php strcmp work?

997


Tell me how to find the position of the first occurrence of a substring in a string?

914


How to do single and multi line comment in php?

946


Tell me how is it possible to parse a configuration file?

891


How to change the principal password?

962


What is session in c#?

948


Tell me how can we change the maximum size of the files to be uploaded?

928


What are the steps for the payment gateway processing?

949


What are the special characters you need to escape in single-quoted stings?

878


How to check a key exist in an array?

1017


Is php used for frontend or backend?

966


Explain the difference between urlencode and urldecode?

994


Why is php so popular?

871


How many ways to include variables in double-quoted strings in php?

1013