Widgets > wijeventscalendar > Change the Start Date |
By default, the Day view of the wijeventscalendar starts with the current date. You can change the date using the selectedDate option.
</script>
tag in the references, enter the following jQuery script to initialize the wijeventscalendar widget and set the selectedDate option.
<script type="text/javascript">
$(document).ready(function () {
$("#eventscalendar").wijevcal({
selectedDate: new Date(2015, 11, 21)
});
});
</script>