I look at using fullCalendar and using qTip to display a description using eventMouseover.
Could anyone do this or know about a solution? I google'd and also tried to implement
this post , but I had no joy. The only time I got it to work, it got into a loop and crashed my browser.
Any advice / support is appreciated.
Von Schmitt.
UPDATED: here is the code I'm starting from (knowing an example script, but if I could integrate qTip, I could progress). I have qTip etc. Ready to use. I just don't know where to start now? Thanks again.
UPDATED: July 15, 2010 Can anyone help?
<script type='text/javascript'>
$(document).ready(function() {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
$('#calendar').fullCalendar({
theme: false,
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: false,
events: [
{
title: 'All Day Event',
start: new Date(y, m, 1),
description: 'Blah blah blah blah blah blah blah'
},
{
title: 'Long Event',
start: new Date(y, m, d-5),
end: new Date(y, m, d-2),
description: 'Blah blah blah blah blah blah blah'
},
{
title: 'Meeting',
start: new Date(y, m, d, 10, 30),
allDay: false,
description: 'Blah blah blah blah blah blah blah'
}
]
});
});
</script>