Simple Calendar for jQuery
I needed an calendar easy to modify and to update. Unfortunately none on the current market could do what I wanted to. So i created my own. It is still under development, so do not hesitate to contact me if a problem appears or if you need to arrange it.
A day is a DOM object "li". All events are "ul". It may be possible to use other DOM objects, but i can't guarantee it will works.
You simply have to had this in your javascript :
$("#myCalendar").simplecalendar();
By default, it is in French.
Possible options :
function loadNextEvent(date)
{
// load next event for date
}
To used it, add it in the constructor like this :
$("#myCalendar").simplecalendar({monthNames})
I'll try to post a tutorial to explain it in detail.
There is a demo include with this project.
Under MIT-LICENSE (see MIT-LICENSE.txt)