I use this code to get utc offset in hours:
new Date().getTimezoneOffset() / 60;
But it always returns me -2 even thou my timezone is actualy +1 why is that happening?
EDIT if i change my computer time zone to UTC +2 it returns -3, really strange..
Date.getTimezoneOffset()means offset from UTC to your locale. Also, are your system in daylight-saving-time right now? – Passerby Oct 19 '12 at 11:15getTimezoneOffset(). All is correct. :-) timeanddate.com/worldclock/city.html?n=239 – Deestan Oct 19 '12 at 11:46