Jquery datepicker localization
        Posted  
        
            by Shipow
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Shipow
        
        
        
        Published on 2009-09-21T02:52:30Z
        Indexed on 
            2010/04/18
            3:53 UTC
        
        
        Read the original article
        Hit count: 271
        
I need a french calendar and I can't understand the problem. I guess i'm not using the regional options like it should be. But...
Here is my code :
$(function() {
  $('#Date').datepicker({
      showMonthAfterYear: false,
      showOn: 'both',
      buttonImage: 'media/img/calendar.png',
      buttonImageOnly: true,
      dateFormat:'d MM, y'
    },
    $.datepicker.regional['fr']
  );
});
        © Stack Overflow or respective owner