Tagged Questions
The gettime tag has no wiki summary.
5
votes
4answers
18k views
jQuery getTime function
is it possible to create a jQuery function so that it gets current date and time? I've been looking around documentation but haven't found anything so far...
4
votes
9answers
12k views
Java: Date.getTime() not including time?
Can't understand why the following takes place:
String date = "06-04-2007 07:05";
SimpleDateFormat fmt = new SimpleDateFormat("MM-dd-yyyy HH:mm");
Date myDate = fmt.parse(date);
...
3
votes
3answers
4k views
Why javascript getTime() is not a function?
I used the following function,
function datediff()
{
var dat1 = document.getElementById('date1').value;
alert(dat1);//i get 2010-04-01
var dat2 = document.getElementById('date2').value;
...
2
votes
1answer
65 views
Flowplayer getTime() Returns an Object
I'm working on a implementation of the flowplayer.
But I ran in some issues with the getTime() method.
As you see in my Code I'm trying to write in a textarea when user clicks a link with jQuery but ...
2
votes
1answer
156 views
CouchDB: Get server-time with an http request in CouchApp
I need the server-time for "user-is-online" stats in my CouchApp. I work with jquery.couch.js and would prefer to have a url, e.g. /db/_design/app/time - which gets me a timestamp.
How do I realize ...
2
votes
9answers
972 views
Detect last week of each month with javascript
what would be a way in javascript to detect the last week of each (current) month. Or last monday of the month?
1
vote
2answers
37 views
Javascript new Date() give me the same result when executing getTime()
To compage 2 date i'm doing a conversion from a string to the javascript Date object.
This is an exemple of the code i have:
var date1 = new Date(dateArrray1[2], dateArrray1[1], dateArrray1[0], 0, ...
1
vote
3answers
44 views
How Implement Date when the object created in Java?
It's an homework.
I have to implement the following:
private Date dateCreated which store, when the object was created.
private Date dateCreated;
getter method for dateCreated.
public Date ...
1
vote
2answers
488 views
Convert UNIX timestamp to milliseconds
How do you convert a UNIX timestamp into a timestamp in PHP like JS when using .getTime() since it displays as milliseconds. I want to convert the timestamps because I need JS to read it. How can I do ...
0
votes
1answer
151 views
Year incorrect when setting Date value from Calendar.getTime()
I am building a CalendarDisplay application for Android. Among other things, this application allows the user to select the number of days to add to an epoch (epoch is a date in 1899), and that ...
0
votes
2answers
129 views
Get local Date string and time string
I am trying to get the LocaleDateString and the LocaleTimeString which that would be toLocaleString() but LocaleString gives you GMT+0100 (GMT Daylight Time) which I wouldn't it to be shown.
Can I ...
0
votes
2answers
109 views
solve negative values in a javascript based countdown
I am creating a countdown to count the time between a match of the euro2012 that I intend to watch.
I've come with a working version of it but I don't understand why it gives me sometimes negative ...
0
votes
1answer
163 views
Flash getTimer() not working in Flash Builder 4.5
I've been following some tutorials and they use the function getTimer() in the actionscript code, but when I use it, it gives me: 1180: Call to a possibly undefined method getTimer.
I'm using Flash ...
0
votes
1answer
154 views
Substracting Dates in Javascript return a negative number
I am using the TimeTracker.js from link text to track Page Load times and put them in Google Analytics. Basically what it does is record a start time, and once the page loads it records a end time and ...
0
votes
1answer
400 views
Adding time zone hours difference to time
I know there's a much better and correct way to do it, but i need a temporarily solutions. I need to add in extra hours to the time, and the day will change automatically too. How should I change the ...
-1
votes
6answers
135 views
Javascript - How do I make getTime() uniform across all computers?
Right now I'm getting a different number on my Desktop than I am on my laptop.
-1
votes
3answers
457 views
date.getTime() difference problem
Greetings,
I have one simple condition that never passes:
if(datas.date.getTime()-temps.date.getTime()>=5000)
I want to check if it has been 5 seconds from one to another.
Update:
Here is ...