Skip to content

is-calendar is a very simple date picker for MooTools.

Notifications You must be signed in to change notification settings

bbreukelen/is-calendar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is-calendar

is-calendar is a very simple date picker for MooTools.

Live Demo

http://isfeng.github.io/is-calendar/

Screenshots

Screenshot

How to Use

Snippet code HTML:

#HTML

<input type="text" id="cal">

Snippet code Javascript:

#Javascript

$('cal').makeCalendar();

// call back function
$('cal2').makeCalendar({
    onSelectDate: function(d){
        alert(d);
    }
});

// change default color
$('cal3').makeCalendar({
    bg_color: 'black',
    date_color: 'white',
    week_color: 'orange',
    caption_color: 'white'
});

About

is-calendar is a very simple date picker for MooTools.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 49.6%
  • CSS 20.0%
  • HTML 17.3%
  • Ruby 13.1%