• Resolved dturk91

    (@dturk91)


    I have my calendar links going directly to GTW. Can tweak the code to have them open in a new window?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Northern Beaches Websites

    (@northernbeacheswebsites)

    Hi @dturk91<

    Unfortunately I wasn’t able to open the page you mentioned. However this isn’t possible within the bounds of the plugin but it is possible with custom jQuery. The following code should work, although it hasn’t been tested.

    jQuery(‘body’).on( ‘click’, ‘.fc-event’, function(e){
    e.preventDefault();
    window.open( jQuery(this).attr(‘href’), ‘_blank’ );
    });

    Thanks,

Viewing 1 replies (of 1 total)
  • The topic ‘Open calendar link in a new page’ is closed to new replies.