Set start day of the week in jQuery UI Datepicker?

Viewed 92465

I'm looking through the docs for the jQuery UI Datepicker (http://jqueryui.com/demos/datepicker/), but I can't find how to set the first day of the week as Monday.

Applying regional settings will set Monday as first day of the week, but this will also change the language.

5 Answers

for using first day as monday :

$(function() {
    $( "#date_id" ).datepicker({ firstDay: 1 });
});
Related