Display 2 weeks in view calendar
Is there a way to display only 2 weeks 开发者_C百科using jquery full calendar?
please take a look at jQuery UI Documentation
<script type="text/javascript">
$(function() {
$("#datepicker").datepicker({minDate: -20, maxDate: '+1M +10D'});
});
</script>
精彩评论