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

Hi I was wondering if there is any jquery function around which can take this dateTime "2010-10-18 10:06" and convert and split it returning "2010/10/18" and "10:06".

It would be also nice if the same function could either receive "2010-10-18 10:06" or "2010-10-18" only and return as mentioned above, or different formats besides "2010/10/18" like 18-10-2010" or and 18th of October 2010, giving the option but not that important, just curious about jQuery power dealing with dates.

Thanks.

share|improve this question
I wouldn't say that the first part of this question is particularly a JQuery issue - just general Javascript. Are you input values strings or date objects? – belugabob Mar 8 '10 at 15:41
They come from database, but I thinks they are treated as string. – Amra Mar 8 '10 at 15:51
So my example will do the trick just nicely! – Marcos Placona Mar 8 '10 at 15:55
Well then, there are two question in one here. The first question asks how to split a datetime, expressed as a string, into the date and time parts. This can easily be acheived using the javascript string 'split' function, using a space as the separator. This results in a two element array, with the first element containg the date and the second containing the time. The second part of the question asks how to 'do the same' with a date time, or just a date - I'm not sure what the OP would expect the time part to contain is the case of just a date being supplied? – belugabob Mar 9 '10 at 10:00

4 Answers

up vote 12 down vote accepted

Converting with DateJs should be as easy as:

var d1 = Date.parse('2010-10-18, 10:06 AM');
alert(d1.toString('dd/mm/yyyy HH:mm:ss GMT'));

It's currently the best library around

share|improve this answer
it says invalid procedure :-(, i copied your example – Amra Mar 9 '10 at 10:02
Sorry I did not downloaded the datejs. – Amra Mar 9 '10 at 10:21

datejs. Check it, its cool and it does pretty good job for all the possibilities and error handling is also pretty good.

share|improve this answer

Have a look Here

It includes a function called fromString which would help you.

share|improve this answer
<input type="text" id="tbDateTime" value="2010-10-18 10:06" />
<input type="text" id="tbDate" value="" />
<input type="text" id="tbTime" value="" />

<input type="button" id="btnSubmit" value="Submit" />


<script type="text/javascript">
    $(function () {
        $('#btnSubmit').click(function () {
            var dateTimeSplit = $('#tbDateTime').val().split(' ');

            var dateSplit = dateTimeSplit[0].split('-');
            var currentDate = dateSplit[2] + '/' + dateSplit[1] + '/' + dateSplit[0];
            //currentDate is 18/10/2010

            $('#tbDate').val(currentDate);

            var currentTime = dateTimeSplit[1];
            //currentTime is 10:06

            $('#tbTime').val(currentTime);
        });
    });
</script>
share|improve this answer

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.