$(document).ready(function() { $("#calendar").ical({ beforeMonth:function(date) { $.ajax({ type: "GET", url: "https://tripmarks.at/wp-content/plugins/dtm-ical-events-agenda/action.php", dataType: "json", data: "date="+date, async: false, success: function(json){ $.fn.ical.changeEventDates(json); } }) }, eventdates: {"dates": [ ] } }); });