$(function() {
$.datepicker.setDefaults($.datepicker.regional['ko']);
$(".datepicker").datepicker({
dateFormat: 'yy-mm-dd',
autoSize: true
});
});
The code above is everything in the head's script. And I included my own css.
And as you see, jquery datepicker is affeced by my CSS.(...not allowed to post images..You could see the image here)
Image sample
It is said that all I have to do is just type this code: $(".datepicker").datepicker();
What else should I do??
And the localization, also not working. Do I have to include 'jquery.ui.datepicker-ko.js' file? But that file is in the same directory of 'jquery.ui.datepicker.js' file.