PIGNOSE Calendar

View project on Github Download zip

Calendar

PIGNOSE Calendar is beautiful and eidetic jQuery date picker plguin.

Dark theme support

Dark theme type supports, And we have a plan to add other themes.

Multiple range Calendar

PIGNOSE Calendar supports multiple range picker.

Toggle Calendar

You can toggle date and get those dates as array.

I18N Support

PIGNOSE Calendar supports various languages.

Korean
Deutsche
Chinese
Supported languages
en ko fr ch de jp

Dependency

This plugin has dependencies some javascript library.

Check belows and import it.

Options

name type description default
lang string A language to set to the Calendar. en
toggle boolean If you set true this option, You can use toggle on your Calendar. false
multiple boolean If you set true this option, You can use multiple picker on your Calendar. false
select function This callback will be called when you select a date on calendar.

Methods

You can use the method like $element.hypermodel('Method Name', arguments); format.

name type description
select function You can click day by using this method, First argument must be integer type.

bower

If you use bower.

bower install pg-calendar

npm

If you use npm.

npm install pg-calendar

sample

<div class="calendar"></div>
$(function() {
    $('.calendar').pignoseCalendar({
		lang: 'en'
	});
});