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
|
How can I format the date using jquery. I am using below code but getting error:
Please suggest solution |
|||||||
|
|
jQuery dateFormat is a separate plugin. You need to load that explicitly using a |
|||||||||||||||||
|
|
add jquery ui plugin in your page.
|
|||||||||||
|
|
ThulasiRam, I prefer your suggestion. I works well for me in a slightly different syntax/context:
If you decide to utilize datepicker from JQuery UI, make sure you use proper references in you documents section:
|
|||
|
|
|
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. |
|||
|
|
|
Just use this:
|
||||
|
|
|
An alternative would be to use just simple js date() function, if you don't want to use jQuery/jQuery plugin: e.g.:
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 |
|||
|
|