Appreciate hep....text color should change with every refresh

A

Anonymous

Guest
Hi All,

Appreciate help in resolving the below issues.....

With every refresh I wanted to change the text color in marquee tag by calling javascript function......
I am getting color code like #18EEC5 ......but when calling script function from marquee tag nothing is happening......

<html>
<head>
<script type="text/javascript">
function getRandomColor() {
var letters = '0123456789ABCDEF';
var color = '#';
for (i = 0; i < 6; i++ ) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
</script>
</head>
<body>
<script>
$col=getRandomColor();
document.write(getRandomColor());
</script>
<marquee style="color: 'document.write(getRandomColor())'; font-size: 20pt; font-weight: bold">
Text Color Changes
</marquee>
</body>
</html>

Thanks,
Nick
 
See my answer in your other post in the JavaScript forum.
 
Back
Top