Watch our free webinar on AI in L&D

Watch our free webinar specifically designed for L&D professionals.

In this webinar, Nick Villani, L&D specialist and Edifai founder, focuses on the intersection of AI and learning design. This session showcases practical, AI-driven strategies for revolutionizing your learning and development initiatives. Featuring live demonstrations and rich insights, you'll see firsthand how AI is shaping the future of L&D, offering innovative approaches to enhance the learning design process.

In this session, we explore:

  • Understanding AI’s Role in Conducting Research: Learn how AI tools can identify skill gaps.
  • Summarize Content: Gain insights into using AI to conduct subject matter research and analyze knowledge.
  • Development of AI-Enhanced Training Materials: Explore how AI can aid in creating dynamic training content.
  • Automate Tasks: Explore some AI tools that every L&D professional should be using.

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