View on GitHub

hDatePicker

hDatePicker - horizontal javascript datepicker

Download this project as a .zip file Download this project as a tar.gz file

About

hDatePicker is a javascript library that creates a datepicker that lays out flat horizontal and is responsive.

It was used in Daypage.

Example

Features

Usage

Initialize it on any div:

<script src="hdatepicker.js"></script>
<div id="hDatepicker"></div>
	  
hDatepicker($("#hDatepicker"));
	  

Provide some actions for what happens when a date is selected:

hDatepicker($("#hDatepicker"), {
  onDateSelect: function(date) {
    // do stuff
  }
});