specopkirbs
BANNED
- Nov 28, 2008
- 920
- 752
i was given some javascript code from someone here to add to my wordpress site and when i first posted it it worked fine however i edited my sidebar in wordpress and now the code wont work no matter what, all i did was add some other widgets.
i need to have this js working in the sidebar.
if you can help ill throw a few dollars your wat
i need to have this js working in the sidebar.
if you can help ill throw a few dollars your wat
Code:
<div style="width:433px; height:29; font-size:18;font-family: arial; color: white;">
<script type="text/javascript">
//set up Time & Date variables for the current Day & Hour
var myDate = new Date() // returns full date
var today = myDate.getDay() //returns 1-7 (1 being monday)
var message = ''
switch(today)
{
case 1: //monday
message = 'Tomorrow 1900 hrs to 2000 hrs at Boston Road Park Sleaford'
break;
case 2: //tuesday
message = 'Tonight 1900 hrs to 2000 hrs at Boston Road Park Sleaford'
break;
case 3: //wed
message = 'Tomorrow 1900 hrs to 2000 hrs at Boston Road Park Sleaford'
break;
case 4: //thurs
message = 'Tonight 1900 hrs to 2000 hrs at Boston Road Park Sleaford'
break;
case 5: //friday
message = 'Tuesday 1900 hrs to 2000 hrs at Boston Road Park Sleaford'
break;
case 6: //saturday
message = 'Tuesday 1900 hrs to 2000 hrs at Boston Road Park Sleaford'
break;
case 7: //sunday
message = 'Tuesday 1900 hrs to 2000 hrs at Boston Road Park Sleaford'
break;
}
document.write('<marquee behavior="scroll" direction="left">' + message + '</marquee>');
</script>
</div>