I am using the following jQuery calendar: https://github.com/MrHus/jquery-monthly-ical/tree/
Following the documentation, it tells me that dates should be entered like
This should do it:
$dates = array();
// build an array with that data
foreach($events as $event)
$dates[] = (object)array(
'date' => date('Y/m/d'),
'title' => $event->title,
'desc' => sprintf('Details/Signups', SITE_URL, $event->id),
);
?>
eventdates: