HTML5 datepicker
by rarteaga
HTML
<input type="date" id="calendar">
JavaScript
$("#calendar").on("change", function(e){
console.log($(this).val());
});
by rarteaga
<input type="date" id="calendar">
$("#calendar").on("change", function(e){
console.log($(this).val());
});