datepicger month grid
by MightyPork
HTML
<p>Date: <input type="text" id="datepicker" /></p>
JavaScript
$(function() {
$( "#datepicker" ).datepicker({
numberOfMonths: [4,3],
showButtonPanel: true,
autoSize:true
});
});
by MightyPork
<p>Date: <input type="text" id="datepicker" /></p>
$(function() {
$( "#datepicker" ).datepicker({
numberOfMonths: [4,3],
showButtonPanel: true,
autoSize:true
});
});