javascript - Datepicker jQuery on Apache Webserver -


this question has answer here:

i want change jquery datepicker german calendar, did not work.

-i tried :

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

thank you!

please refer below post, need mentioned modifications in below post

jquery datepicker localization german


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -