JuztinMedia
MIS
Okay! Here's my issue: I would like users to be redirected to a specific page, each day, beginning at 3:00:00AM. Below is the script I'm currently using, but, I can't specify a time. Does anyone know how to add that in? Help! Thanks!!
----
var today = new Date();
var dayOfWeek = new Array("sun.asp","mon.asp","tue.asp","wed.asp","thu.asp","fri.asp","sat.asp");
var target = dayOfWeek[today.getDay()];
window.location = target;
----
Thanks!
-JusTin
----
var today = new Date();
var dayOfWeek = new Array("sun.asp","mon.asp","tue.asp","wed.asp","thu.asp","fri.asp","sat.asp");
var target = dayOfWeek[today.getDay()];
window.location = target;
----
Thanks!
-JusTin