Reversed Days Calendar

Explore an example of a basic Calendar.js setup with days and dates displayed in reverse order — an ideal layout for Hebrew and other right-to-left calendars.

Include Files

Make sure you include the following files:

<link rel="stylesheet" href="dist/calendar.js.css">
<script src="dist/calendar.min.js"></script>

Create DOM Element

Add a new DOM element to house the Calendar.js instance:

<div id="calendar"></div>

Create Calendar.js Instance

Run the following JavaScript to create a new Calendar.js instance:

const calendarInstance = new calendarJs( "calendar", {
    startOfWeekDay: 6,
    reverseOrderDaysOfWeek: true
} );

Result

More Information

Need a different configuration option? Explore the complete Calendar.js documentation here to see every configuration option and learn how to use them in your projects.