How can i convert date which looks like this 12092008 to unixtime like this 1221215809

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You may want to use the following:

function covertToUnixTime(yourDate) {
    return new Date(yourDate.substring(4, 8) + '/' + 
                    yourDate.substring(2, 4) + '/' + 
                    yourDate.substring(0, 2)).getTime() / 1000;
}

covertToUnixTime('12092008');   // Returns: 1221170400
link|improve this answer
feedback

You could use jQuery datepicker's utility functions, parseDate and formatDate.

link|improve this answer
feedback

This worked for me.

var day = $("#day").val();
var month   = $("#month").val();
var year    = $("#year").val();
var date    = new Date();
date.setFullYear(year, month, day)
var unixtimeMS = date.getTime();
var unixtime = parseInt(unixtimeMS / 1000);
alert(unixtime);
link|improve this answer
1  
You need to be very careful with this - remember that the clocks on your clients' computers may not be set to the same time zone as your servers. – Pointy Feb 19 '10 at 13:24
feedback

Your Answer

 
or
required, but never shown

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