1
vote
3answers
64 views

Datetimes in Javascript

Im not particularly skilled when it comes to working with datetimes in js. I have a JSON object that has some datetime fields formatted like YYYY-MM-DDTHH:MM:SS now I have to put this in HH:mm AM/PM ...
0
votes
2answers
22 views

Make Highchart use a specific targeted time zone

I'm using highchart to display data along a time x axis. The data are relative to a specific location on the globe so I need to make HightChart display the time of this location. Which is neither UTC ...
0
votes
1answer
24 views

How to add or subtract dates, days,months in bootstrap datetime widget?

I am using a Bootstrap DateTime widget in my template, I have placed 2 widgets (From, To) side by side to select a particular range of dates, hours, or months according to need. I have linked both ...
2
votes
0answers
30 views

ISO 8601 not retaining timezone?

i am using the timeago Jquery plugin to output strings like "5 mins ago" etc. The plugin uses ISO 8601 date format. I have a Date object which looks like this in console: Sat Jun 15 2013 07:16:23 ...
1
vote
1answer
29 views

Strange behavior when getting total weeks of the month

I have strange problem. I have to calculate total weeks of the given date month. My logic is working perfectly it will return me correct week number but the problem is my original date was also ...
-7
votes
2answers
50 views

how to get the time when exiting a textfield? [closed]

I have a form with some textfields for entering some words. I would like to save the times when the user has finished entering his/her input in each textfield. These time info should be posted ...
1
vote
2answers
43 views

what is wrong with this date format

This works in Chrome but not in Firefox. new Date("2013-06-03 17:09:06-0400") Works fine in Chrome Gives 'NaN' in Firefox. I would appreciate any help.
1
vote
1answer
38 views

Get last date for x day of a given month in Javascript

I've been trying to figure out how to get the date of the last x day of a month in JavaScript without using a loop. I'm sure its to do with using the modulus operator but I cant quite get the formula ...
1
vote
5answers
47 views

How to get AM or PM?

I have buttons with the names of big cities. Clicking them, I want to get local time in them. $('#btnToronto').click(function () { var hours = new Date().getHours(); var hours = hours-2; ...
3
votes
1answer
41 views

my datetime recorded in my DB shift of 2 hours compared to my javascript variable

Everytime I save my date time into my database, I clearly see a shift of 2 hours in my database. I know this is something about UTC but I prefer keeping the exact date in my DB without UTC. Here is ...
0
votes
2answers
37 views

How to compare server time with the predefine time?

I am making an event application. my question how can I compare server time with the predefined time? That predefined time I will write hardcore into my HTML. Here's the the code for that but it is ...
0
votes
1answer
24 views

Django returns bad timezone

I've a problem that Django on AWS EC2 Ubuntu 12.04 server using this the following view returns UTC timestamp: import time from django.utils.datetime_safe import datetime def currentTime(request): ...
1
vote
2answers
42 views

from unix timestamp to datetime

I have something like /Date(1370001284000+0200)/ as timestamp. I guess it is a unix date, isn't it? How can I convert this to a date like this: 31.05.2013 13:54:44 I tried THIS converter for ...
-2
votes
1answer
25 views

Javascript date time not same with different locale

We send time to javascript as long type from server. Javascript date function converts it to date based on users locale. We do not want that. We would like it to be set as date as it comes from the ...
5
votes
1answer
85 views

javascript seems to be using time zones backwards with Firefox

I've run the following in the console on Firefox (version 21) and I'm getting results I don't expect. new Date(1362891600000); var date = new Date(1362891600000); var time = date.getHours(); new ...
1
vote
2answers
75 views

JavaScript AM/PM time comparison

Suppose I have 2 datetime variables: var fromdt = "2013/05/29 12:30 PM"; var todt = "2013/05/29 01:30 AM"; I want to compare these 2 datetimes. How can I get Javascript to recognize whether the ...
0
votes
4answers
47 views

get date difference in javascript

I want to get the difference of of these dates. e.g var current_date = new Date(); var date_from_database = "2013/06/10 15:00:00"; var difference = data_from_datebase - current_date; // so the ...
0
votes
1answer
52 views

Javascript in Chrome cannot handle date in the format dd/mm/yyyy

Using chrome's js console, I cannot seem to get it to recognize dates formatted in dd/mm/yyyy > +new Date() 1369840513437 > +new Date("5/28/2013") 1369717200000 > +new Date("28/5/2013") NaN ...
0
votes
4answers
62 views

JavaScript getMonth [duplicate]

I am trying to use JavaScript to display the date and time on my webapp. Although I have had success doing this my date and time is printed as 29/5/13. I want it to have a zero in front of the month ...
1
vote
3answers
80 views

calculate time between two datetimes

I´m trying to calculate the time between two dates and the time to get the traveltime in days and in hours(rounded). I use 4 input from bootstrap (including datepicker) with the formats dd:mm:yy and ...
-1
votes
1answer
29 views

Date-time stamp conversion in javascript

I have Date String Thu May 23 2013 18:19:32 GMT+0530 (India Standard Time) from my database. I want to make in this format THURSDAY May 23 2013 18:19:32 GMT 0500 CDT in ext-js.any idea ? Thanks in ...
1
vote
1answer
32 views

flot date bar chart alignment askew

I am trying to make a chart that shows the number of search results my app pulls in for each day using flot. My code (BTW it uses underscore.js): flotDataSet = _.countBy(resultSet, function(file) { ...
0
votes
1answer
61 views

How to get last hour, last month and yesterday in javascript?

I am trying to get the last hour, last month and yesterday from current date and time, I am using Date() Object to get current date and time: function fetchCurrentDateTime() { var currentDateobj ...
0
votes
1answer
39 views

How do I convert a date/time to HST in JavaScript?

Trying to convert a date string to HST time, but it does not work. Relevant code: var MINUTES_IN_MILLI = 60000, HOURS_IN_MILLI = 3600000, UTC2HST_OFFSET = 10, date1 = new ...
0
votes
1answer
67 views

How to check if days between two dates are weekdays?

I have form where user take two dates from calendar. I want to check if days between two dates that user selected are in from friday to monday (include). I found script that count weekdays (days that ...
0
votes
2answers
42 views

javascript - elapsed minutes between two times

I have an application that requires the elapsed minutes between two times. Eg: 9:00 to 10:00 is sixty minutes. This is the solution that I worked out, but it seems excessively verbose. Can I do ...
0
votes
3answers
66 views

date() function returning Invalid Date in Safari and Firefox

I am formatting a date in the following way: date = new Date("2013-05-12 20:00:00"); formattedDate = new Date(date.getFullYear(),date.getMonth(),date.getDate()); When I run this in Chrome it ...
0
votes
3answers
42 views

How to get date difference with specific date format?

In my javascript code, I am able to only get the date as a string in this format: Example: Mon May 28 11:20:46 EDT 2012. Is there a way I can check if that date and the current date is >= than 1 ...
1
vote
0answers
42 views

converting getTimezoneOffset() into static timezone

I have the problem of trying to convert a GMT timestamp on some json to localtime for use in Highcharts. But because there is a lag between getting the json with the timestamp and when the function ...
0
votes
1answer
26 views

querystring space between chars

script var end = new Date().toLocaleString(); var url = '/Widget/GridExportToExcel?end=' + end; console.log(url); console output: 16+5+2013+14%.... There are "pluses" instead of spaces, so in ...
1
vote
2answers
43 views

Firefox returning invalid for timezone offsets?

I've come across what appears to be an odd result from Firefox. Using the following format: 2013/01/01 00:00:00-0000 For my date, I run into an issue when the timezone goes "positive". For example. ...
1
vote
1answer
52 views

Finding the second and fourth Tuesday of the month with Javascript

My association has meetings on the second and fourth Tuesday of each month and I'd really like a Javascript code so I don't have to update our site every two weeks and the date of the next meeting can ...
0
votes
2answers
71 views

asp.net update textbox via JS based on other textbox value

I have two textboxes on my asp.net page. One is for today's date and one is for the expiry date which is one year from now. So if the first textbox contains 23/04/2013 I want the second textbox to ...
0
votes
2answers
55 views

Get previous week by date.js expression

I'm using daterangepicker that uses date.js for date ranges presets. I'm trying to get 'previous week' dates by using date.js expressions. Date.parse("sun")returns me last "Sunday". How can I get ...
0
votes
1answer
68 views

Date Operations in Javascript

I currently have two variables: appointment_date and appointment_time which are in the format dd/mm/yyyy and (h)h:mm respectively. The time is 12 hour format but for times before 12PM there is no ...
3
votes
3answers
198 views

Age (+leap year) calculation in Javascript?

I've read this question but there were many comments which some said it was accurate and some said it wasn't accurate. Anyway I have this code which calc person's age in Javascript : function ...
-1
votes
2answers
84 views

jquery date and time calculation firefox NaN

I am trying to calculate days between certain date, I am using date and time. On chrome works fine, but on Firefox gives me "NaN", haven't test it on Ie, but I think it will be same result. ...
1
vote
3answers
108 views

json datetime to javascript datetime gets me wrong date

I am trying to convert datetime from the server in the form of JSON to something I can use in HighChart but I keep getting the wrong day. var json = {"lastMinute":"2013-05-06 15:46:00"}; // GMT var ...
0
votes
2answers
82 views

Firebase new Date()?

I'm new to Firebase and I was wondering how I can store a JavaScript date and use Firebase to compare them on the client side later? I want to do something like: var someDate = new Date(); ...
0
votes
2answers
42 views

basic Time and Date manipulation in JavaScript

I have a time stamp of the in following form 2013-05-05 16:00:00 Can anyone tell me how to get rid of the time part and advance it one day using javascript, so I have. 2013-05-06
0
votes
2answers
63 views

how to get hosted server(LAN) datetime in javascript

I have a web application, where users need to get the week number in a text box. Since the users/client machines are in different time zone, they are getting the week number based on their machine ...
1
vote
1answer
252 views

asp.net mvc datetime dynamic validation by clients date format

I have a Custom Attribute for DateTime validation with given dateformat and also javascript validator which are provide me both client side and server side validation. But now I should change my ...
0
votes
3answers
41 views

remove just 'UTC' text at the end from DateTime stamp

I am using date.toGMTString() to get DateTime as GMT standrad. so what I am getting is 'Fri, 26 Apr 2013 17:08:35 UTC' this. I just want to display this without the text 'UTC'. please let me know
1
vote
2answers
80 views

Javascript: how to add n minutes to unix timestamp

I have a unix timestamp: 1368435600. And a duration in minutes: 75 for example. Using javascript I need to: Convert the timestamp to a string format hours:mins (09:00) Add n minutes to the ...
0
votes
1answer
62 views

display date independent of system locale and as per the application language

My web application supports two languages: English & French in which date is displayed in the header of each page. Now, what happening is date is displayed as per the the user system's locale.If ...
6
votes
2answers
440 views

JavaScript - Get system short date format

Is there any way to get system short date format in JavaScript? For example whether system's short date is in American format eg. m/d/Y or in european eg. d/m/Y Please note: This is not question ...
1
vote
2answers
209 views

What does the “.000Z” of “yyyy-mm-ddT00:00:00.000Z” mean? [closed]

I've gotten a response from one application with the following date & time format: yyyy-mm-ddT00:00:00.000Z I need date and time for a report I have to present. What does the .000Z mean? ...
2
votes
4answers
307 views

Calculating year, month, days between dates in google apps script

I have calculated using the below function and it gives the o/p in the format of "X YEARS, Y MONTHS, Z DAYS" and for some dates its giving some wrong o/p. I think I did some calculation missing in the ...
1
vote
3answers
148 views

Javascript integer to datetime with specific timezone

I have the following datetime saved in an SQL Server 2005 database: 2012-12-06 16:20:11.010. I want to display this datetime using javascript on the client side, so I serialize it (as part of a ...
2
votes
1answer
74 views

javascript function to calculate difference in two dates, return short format, rounding to single unit

I struggled with wording the title, but basically I want a function where I can provide two dates and it would output something like: "2w" if the result was 15 days or "1y" if it was 13 months or "1m" ...

1 2 3 4 5 15