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
2010-05-03 22:46:47
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
2010-05-05 14:53:14