Access Shortcode in ajax code?

I had the same problem. Here is the solution:

jQuery(document).ajaxSuccess(function() {
    jQuery('.tippy').tippy({ position: "link", offsetx: 0, offsety: 10, closetext: "X", hidedelay: 700, showdelay: 100, calcpos: "parent", showspeed: 200, hidespeed: 200, target: "_blank", showtitle: true, hoverpopup: true, draggable: true, dragheader: true, multitip: false, autoshow: false, showheader: true, showclose: true, htmlentities: false });
});

Put this anywhere on the page. Put your own parameters inside, of course. More info here:
https://wordpress.org/support/topic/tippy-not-working-with-calendar-for-future-months-in-events-manager-extended?replies=3

  • Brian