Calendar with only 30 days
Jquery calendar with only 30 days active for picking others should be disabled :
HTML:
HTML:
<p>Date: <input id="datepicker" type="text"></p>
Script:
<script>
$( "#datepicker" ).datepicker({
minDate:'0',
maxDate: '+1m',
});
</script>
Comments
Post a Comment