0

I want to change jQuery Datepicker to German Calendar, but it did not work.

-I tried that :

<script>
  $( function() {
    $( "#datepicker" ).datepicker( $.datepicker.regional[ "de" ] );
    $( "#locale" ).on( "change", function() {
      $( "#datepicker" ).datepicker( "option",
        $.datepicker.regional[ $( this ).val() ] );
    });
  } );
  </script>

Thank you!

1 Answers1

0

Please refer the below post, You need to do mentioned modifications in the below post

JQuery Datepicker Localization German

Pradeep
  • 74
  • 7