Watch Our Free Webinar: Leading in an AI Powered World

In this digital age, AI is not just about data and technology; it's about holistic transformation, encompassing all facets of an organization. This session delves into the synergy of AI and human potential, emphasizing the importance of curiosity, innovation, and the irreplaceable human touch in the AI-driven world.

// 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; } }); });