Javascript Unixtime 2006-07-06 10:38am
Just a note of how to get Unixtime in Javascipt.
Also a Javascript Unixtime conversion utility.
var foo = new Date; // Generic JS date object
var unixtime_ms = foo.getTime(); // Returns milliseconds since the epoch
var unixtime = parseInt(unixtime_ms / 1000);
Also a Javascript Unixtime conversion utility.




