[jQuery] Re: Date and Time

2008-09-04 Thread Michael Geary
jQuery doesn't have any functions to deal with date and time. You can use standard JavaScript functions for this. Some examples: // Get the current date/time as a Date object var date = new Date; // Get the numeric representation of the date/time in UTC // (number of milliseconds

[jQuery] Re: Date and Time

2008-09-04 Thread MorningZ
Why not just use plain ol javascript? http://www.google.com/search?q=javascript+convert+to+UTC (which ultimately a jQuery plugin would do anyways)