views:

77

answers:

1

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

A: 

please take a look at jQuery UI Documentation

<script type="text/javascript">
$(function() {
    $("#datepicker").datepicker({minDate: -20, maxDate: '+1M +10D'});
});
</script>
GerManson
I fear your not fully understanding his problem, he's refering to the jQuery plugin FullCalendar (http://arshaw.com/fullcalendar/), not the date picker.
ILMV