Forum Moderators: mack
For some strange reason it will not work, and it says undefined.
Please help asap!
Thank you very much
[edited by: JamesR at 9:58 pm (utc) on Aug. 13, 2003]
[edit reason] please, no personal URLs in threads [/edit]
Could you please post the part of your javascript that doesn't work in stead, along with a description of what you would like it to do and which part that doesn't do as you would like it ot?
/claus
BTW: Welcome to WW :)
var msg = new Array();
var Stamp = new Date();
// var today = Stamp.getDate();
var today = Stamp.getDay();
msg[0] = "";
msg[1] = "Hey this is the first tip";
msg[2] = "And this is tip 2!";
msg[3] = "And this is tip 3!";
msg[4] = "And this is tip 4!";
msg[5] = "And this is tip 5!";
msg[6] = "And this is tip 6!";
msg[7] = "And this is tip 7!";
Ps. You should also change this:
trUnder = window.open(...
to
var trUnder = window.open(...
or else it gives warning about assigning a value to an undeclared variable.
Jordan