Watch our Free Webinar: Using AI to Automate Learning Journeys

In this 45 minute webinar we are joined by Fabrizio Conrado from Hive Learning to explore how AI can personalise learner journeys.

With Fabrizio’s extensive experience in creating impactful digital products at Blenheim Chalcot, and our vision to harness AI for organizational transformation, this session is full of tangible takeaways for L&D leaders.

Session Outcomes:

  • Discover Strategies to automate routine tasks, allowing more focus on strategic L&D initiatives.
  • Uncover AI-Driven Solutions to enhance engagement and individualize learning pathways.
  • Explore Real-World Applications of AI in delivering personalized learning experiences.

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