Jsdatepicker date format MM dd, YY

Asked By 20 points N/A Posted on -
qa-featured

Hi

 

    I am using jsdatepicker in my application.After the selecting the date format is coming like mm/dd/yy (10/3/2011) , I should get the format like MM dd,YY  (Sept 3,2011).

Please provide me the solution.

 

 

 

Thanks In Advance

rypatterson

SHARE
Best Answer by Bettythatcher
Best Answer
Best Answer
Answered By 0 points N/A #93324

Jsdatepicker date format MM dd, YY

qa-featured

$(function() {

$("#datepicker").datepicker();

$.datepicker.formatdate('MM,DD,YY');

});

Try adding this code. This will get you to the right format. Datepicker will help you to choose the right type of format. The last line of the code is important. That will get you the right format.

Cheers.

 

Answered By 20 points N/A #93325

Jsdatepicker date format MM dd, YY

qa-featured

You guys here are really excellent. Ask a question and get answers in minutes. Wow really awesome set of experts in this site

Related Questions