Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I updated this question

I would like to transform a datetime to the equivalent datetime in the country(timezone) user is located to.

I have datetime in this format which is UTC/GMT:

Oct 31, 2012 08:10:02

now, according with the user's client timezone i would like to convert that datetime using the current browser/client user's timezone

how can i do that?

share|improve this question
1  
The date time in javascript is GMT. And GMT == UTC. – tftd Nov 3 '12 at 15:19
it's not clear what you mean ... do you mean you want to use UTC as input instead of using date string? – charlietfl Nov 3 '12 at 15:22
@charlietfl i would like a completley UTC so GMT envoirment for javascript cause i have the same for php – okok Nov 3 '12 at 15:24
I have no idea what that last statement means. Overall you have done very por job of explaing your issue Perhaps you want to look at Date.getTimezoneOffset() developer.mozilla.org/en-US/docs/JavaScript/Reference/… – charlietfl Nov 3 '12 at 15:27
1  
can find a lot if you simply use google – charlietfl Nov 3 '12 at 17:17
show 5 more comments

1 Answer

up vote 1 down vote accepted

If I understand correctly, you want to be able to set the end date for the countdown in UTC time, as opposed to the local time of the browser. You don't need to modify the plugin to do this. You just want the setUTC... methods in the Date object. Take a look here: http://www.w3schools.com/jsref/jsref_obj_date.asp.

For example:

var endofworld = new Date(0);
endofworld.setUTCFullYear(2012);
endofworld.setUTCMonth(11);
endofworld.setUTCDate(21);

$('.countdown').countdown({ date: endofworld });
share|improve this answer
1  
I've expanded upon my answer, and included an example – LukeGT Nov 3 '12 at 15:42
i updated question it was not clear at all, check it now ;) – okok Nov 3 '12 at 16:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.