I made an simple application using jquery fullcalender. But my today date is not highlighted.
But today button working fine. What can be the reason? in basicWeek, basicDay it’s working
<?php
echo $javascript->link('jquery-1.7.1.min.js');
echo $javascript->link('jquery-ui-1.8.17.custom.min.js');
echo $javascript->link('ui.core.js');
echo $javascript->link('ui.resizable.js');
echo $javascript->link('fullcalendar.min.js');
echo $javascript->link('ui.draggable.js');
echo $html->css('fullcalendar');
?>
<script type='text/javascript'>
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek,basicDay'
}
});
});
</script>
<div id="calendar"></div>
I solved the problem, It was css overwriting.