Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I format the date using jquery. I am using below code but getting error:

 $("#txtDate").val($.format.date(new Date(), 'dd M yy'));

Please suggest solution

share|improve this question
What error you get? – miku Mar 9 '11 at 18:12
Microsoft JScript runtime error: '$.format' is null or not an object – DotnetSparrow Mar 9 '11 at 18:15
have you included the plugin that includes the format functions? – zzzzBov Mar 9 '11 at 18:17

6 Answers

up vote 36 down vote accepted

jQuery dateFormat is a separate plugin. You need to load that explicitly using a <script> tag.

share|improve this answer
1  
Can I format the date without using that plugin ? – DotnetSparrow Mar 9 '11 at 18:18
7  
@Dotnet sure, using other functions: See e.g. here – Pekka 웃 Mar 9 '11 at 18:20
I dont want to use plugin. CAn you please tell me how can I format the date ? – DotnetSparrow Mar 9 '11 at 18:22
@Dotnet see the link in my comment – Pekka 웃 Mar 9 '11 at 18:22
9  
@Dotnet if it could be done using jQuery, there would not be a jQuery plug-in for date formatting, would there? – Pekka 웃 Mar 9 '11 at 18:32
show 2 more comments

add jquery ui plugin in your page.

 $("#txtDate").val($.datepicker.formatDate('dd M yy', new Date()));
share|improve this answer
Really good one, especially when you already have jQuery UI – GeenHenk Aug 22 '12 at 9:06
This is the answer I was looking for, especially since I am using jQuery UI elsewhere. – nzifnab Jan 10 at 0:32
Excellent solution – Chazt3n Jan 18 at 19:33
Is there any way to get date + 2 years ? – Serjas Mar 9 at 7:22
var currentDate = new Date(); currentDate.setFullYear(currentDate.getFullYear() + 2); – ThulasiRam Mar 11 at 15:33

ThulasiRam, I prefer your suggestion. I works well for me in a slightly different syntax/context:

var dt_to = $.datepicker.formatDate('yy-mm-dd', new Date());

If you decide to utilize datepicker from JQuery UI, make sure you use proper references in you documents section:

<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />

<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script> 
share|improve this answer

Take a look here:

https://github.com/mbitto/jquery.i18Now

This jQuery plugin helps you to format and translate date and time according to your preference.

share|improve this answer

Just use this:

var date_str=('0'+date.getDate()).substr(-2,2)+' '+('0'+date.getMonth()).substr(-2,2)+' '+('0'+date.getFullYear()).substr(-2,2);
share|improve this answer

An alternative would be to use just simple js date() function, if you don't want to use jQuery/jQuery plugin:

e.g.:

var formattedDate = new Date("yourUnformattedOriginalDate");
var d = formattedDate.getDate();
var m =  formattedDate.getMonth();
var y = formattedDate.getFullYear();

$("#txtDate").val(d + "." + m + "." + y);

see: 10 ways to format time and date using JavaScript

If you want to add leading zeros to day/month, this is a perfekt example: Javascript add leading zeroes to date

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.