I am using the jquery countdown serverSync feature as mentioned http://keith-wood.name/countdownRef.html#serverSync, but I can't get the countdown to sync to the servertime. My code as written in the documentation:
$(selector).countdown({
until: liftoffTime,
serverSync: serverTime
});
function serverTime() {
var time = null;
$.ajax({
url: 'http://myserver.com/serverTime.php',
async: false,
dataType: 'text',
success: function (text) {
time = new Date(text);
},
error: function (http, message, exc) {
time = new Date();
}
});
alert("Debug server time: " + time);
return time;
}
my php code in serverTime.php
<?php
$now = new DateTime();
echo $now->format("M j, Y H:i:s O")."\n";
?>
When I alert in the javascript the time the output is:
Sun Jun 24 2012 12:02:23 GMT+0100 (BST)
However when I just go to http://myserver.com/serverTime.php the time is displayed in this format:
Jun 24, 2012 12:03:35 +0100
Very different. Can anyone shed any light on why it's not syncing and could the different date formats returned be the issue?