Jalendar is a premium calendar plugin pack
that created with jquery javascript library.
It supported 13 languages,
4 calendar types and more...
Jalendar offers you 4 different calendar options. You can list your events, you can link to days, you can use Jalendar Selector for date selecting and you can use Jalendar Range for range selecting on calendar.
You can set multiple and unlimited colors to calendar's background, day colors, week colors and year color.
You can use unlimited colors,
13 languages, date types. And you can change week start day. There is more option with plugin's properties.
<div id="yourId" class="jalendar">
<div class="added-event" data-type="holiday" data-date="19-11-2015" data-link="http://google.com" data-title="WWDC 13 on San Francisco, LA"></div>
<div class="added-event" data-type="task" data-date="19-11-2015" data-title="Figma Design System Talks"></div>
<div class="added-event" data-date="10-12-2015" data-title="Tarkan İstanbul Concert on Harbiye Açık Hava Tiyatrosu"></div>
</div>
$('#yourId').jalendar({
customDay: '01/11/2015',
color: '#577e9a', // Unlimited
color2: '#57c8bf', // Unlimited
lang: 'TR',
sundayStart: true
});
<div id="yourId2" class="jalendar"></div>
$('#yourId2').jalendar({
color: '#fff',
type: 'linker',
customUrl: 'http://yourcustomurl.com/yourcustomurl?var=',
dateType: 'mm-dd-yyyy',
titleColor: '#666',
weekColor: '#EA5C49',
todayColor: '#EA5C49'
});
<div id="yourId3" class="jalendar"></div>
$('#yourId3').jalendar({
type: 'selector',
dateType: 'yyyy-mm-dd',
done: function() {
alert( $('#yourId3 input.data1').val() );
}
});
<div id="yourId4" class="jalendar"></div>
$('#yourId4').jalendar({
color: '#37C4A7',
type: 'range',
lang: 'TR',
selectingAfterToday: true,
done: function() {
alert($('#yourId4 input.data1').val() + ' / ' + $('#yourId4 input.data2').val())
}
});