Show 2 weeks viewing

Is there a way to only display 2 weeks using jquery full calendar?

+2


a source to share


1 answer


have a look at jQuery UI Documentation



<script type="text/javascript">
$(function() {
    $("#datepicker").datepicker({minDate: -20, maxDate: '+1M +10D'});
});
</script>

      

0


a source







All Articles