The page works fine in Chrome, but I have this one minor error in FF and a different problem in IE. Assistance with either of these issues is greatly appreciated. Since ive been stumped in the FF error the longest, I'll start with that one:
Here's the code: http://truxmapper.appspot.com/sched.html
The date picker selects a date using the format "07-08-2010 23:28". Now, I need to pass this time as a parameter to my servlet, which is expecting the time represented as a long. This is not a problem in chrome. The Date object accepts a string in the format given above, but when I try to use getTime() on a date instantiated with a string in FF, it returns NaN. So what I've done in the on the page I linked to is a little handling asking the user to re-enter the dates if its read as NaN. This obviously isnt even a bandaid solution since even if you re-enter the date its still going to read NaN. I need to know why the Date function wont instantiate using the string you see in the input text field in FF.
In IE, for some reason its telling me that sTime is undefined.
Thanks!