AI in Marketing and Comms: Watch our Free Webinar

Join Edifai co-founder Nick Villani and communications specialist Katie Roden for an insightful 45-minute session that offers practical ideas and a client case study on how AI is revolutionizing the role of PR and marketing. This webinar is an essential session for anyone working in the field who wants to stay ahead in a rapidly changing landscape. Space is limited, so reserve your place now.

In this session we explore:

  • Navigating the AI Landscape: Understand how AI is transforming the communications and PR industry, and learn how you should start prepping your team to deal with these changes.
  • Strategic Integration of AI: Discover strategies for integrating AI into your existing communication plans, ensuring that AI acts as an enhancer rather than a disruptor to your established practices.
  • Future-Proofing Your Role: Gain insights on future-proofing your role and your team against the rapid advancements in AI, ensuring that your skills and strategies remain relevant and impactful.

// This will run on every page load window.addEventListener('load', function() { // Log which page we're on console.log('Page URL:', window.location.href); // Check if Calendly exists console.log('Calendly loaded:', typeof Calendly !== 'undefined'); // Find all Calendly buttons on the page const calendlyButtons = document.querySelectorAll('[data-calendly]'); console.log('Found Calendly buttons:', calendlyButtons.length); // Log each button's URL calendlyButtons.forEach(button => { console.log('Button URL:', button.getAttribute('data-calendly')); }); document.addEventListener('click', function(e) { const calendarLink = e.target.closest('[data-calendly]'); if (calendarLink) { console.log('Button clicked!'); e.preventDefault(); const calendlyUrl = calendarLink.getAttribute('data-calendly'); console.log('Trying to open:', calendlyUrl); Calendly.initPopupWidget({url: calendlyUrl}); return false; } }); });