This script works in ie but NOT Firefox. Can someone help me make it work in both.
Script just creates and rotates the url that it uses. :mad:
<html>
<head>
<title>Corvallis Calendar - Home</title>
<SCRIPT LANGUAGE="JavaScript" type="text/javascript" >
<!-- //
var myDate = new Date();
var myMonth = myDate.getMonth();
myMonth = myMonth + 1;
var prefix = 'cal';
var CalURL = prefix + myMonth + '.html';
function rotate() {
window.location.reload(CalURL);
}
//-->
</SCRIPT>
</head>
<body onLoad="javascript:rotate()">
</body>
</html>