http://keith-wood.name/datepick.html
しかし、私が見ることができるのは、1日1か月の全時間のアラートを取得することだけです
$(function() {
$('#popupDatepicker').datepick();
$('#inlineDatepicker').datepick({onSelect: showDate});
});
function showDate(date) {
alert('The date chosen is ' + date);
}
好きなように分割する方法を知りたい
<input type="text" name="date" id="popupDatepicker"> When i select date here the fields in the hidden will change below
<input type="hidden" name="day">
<input type="hidden" name="month">
<input type="hidden" name="year">
お知らせ下さい