php - Simple DatePicker-like Calendar -
can recommend simple datepicker calendar can use blog link different urls rather form? jquery or css based good. when clicking next/prev month don't want reload page.
jquery ui has great datepicker can find here
http://jqueryui.com/demos/datepicker/
you can use
http://jqueryui.com/demos/datepicker/#event-onselect
to make own actions when date picked
and if want open without form create form that's hidden , bind click event this
$("button").click(function() { $(inputselector).datepicker('show'); });
Comments
Post a Comment