jCountdown

Server Time Offset Demo

This demo shows you how to get the countdown timer to match the server time offset to the plugin.

Setup

Setup is as simple as doing the following:

//HTML

<p id="timer"></p>
// JavaScript
var dateTo = "January 21, 2013 12:00:00";

$("#time").countdown({
	date: dateTo,
	offset: -8
});