Skip to content
Advertisement

jQuery Date returns wrong values?

I have a date picker that returns it value as Mandag, 03/05/2021 today is 3rd May 2021. Now i passed it to date function

JavaScript

And it returns Fri Mar 05 2021 00:00:00 GMT+0530 (India Standard Time)

JavaScript

Now that returns, which is totally wrong

JavaScript

Advertisement

Answer

In javascript date format is "MM/dd/yyyy" could you check the date format. which you are assigned to pickedDate.

use this for change the date format to datepicker:

var date = $('#datepicker').datepicker({ dateFormat: 'MM-dd-yyyy' }).val();

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement