View Single Post
Old 12-10-2012, 03:18 PM   PM User | #2
vwphillips
Senior Coder

 
Join Date: Mar 2005
Location: Portsmouth UK
Posts: 4,379
Thanks: 3
Thanked 466 Times in 453 Posts
vwphillips is a jewel in the roughvwphillips is a jewel in the roughvwphillips is a jewel in the rough
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>
  <title></title>

</head>

<body>
<div id="tst" ></div>

<script type="text/javascript">
<!--
var Messages=['Day 0','Day 1','Day 2','Day 3','Day 4','Day 5','Day 6'];

function Message(id,ary,hr){
 var date=new Date(),obj=document.getElementById(id),hr=typeof(hr)=='number'&&hr>=0&&hr<=24?hr:24;
 if (obj&&typeof(ary)=='object'&&ary.constructor==Array&&ary[0]){
  obj.innerHTML=ary[date.getDay()+(date.getHours()>=hr?1:0)]||ary[0];
 }
}
Message('tst',Messages,10);
//-->
</script>
</body>

</html>
__________________
Vic

God Loves You and will never love you less.

http://www.vicsjavascripts.org.uk/

If my post has been useful please donate to http://www.operationsmile.org.uk/

Last edited by vwphillips; 12-10-2012 at 03:55 PM..
vwphillips is offline   Reply With Quote