Subscription Plan

Blogging for Beginners Course for Niche Website Builders

Free
  • Access to our Freebies Vault
  • Access to the ITB Facebook Group
  • Free Traffic Generator Group
Sign up Now!
Blogging for Beginners Club
  • Everything in the Freebies Membership
  • Twice Monthly Q&A Session with Coach Josie
  • Keyword and Content Organizer Spreadsheet
  • Website Setup, Website Design, and Website Niche Courses
  • Deluxe Blogging Workbook
only $7
Content Creators Society
  • Everything in the Blogging for Beginners Club
  • Entire "The Path to Monthly Blogging Profits" Course
  • Private Facebook Support Group
  • Weekly Live Group Coaching Calls
  • Unlimited Access to Lead Magnet Library
  • Writer & Editors' Guidelines to Publishing Guide
  • 360 Blog Ideas Content Calendar Board
  • and More...
only $27 (Limited Time Founders Price)

What makes you qualified?
How can you help me?
const videoAnswers = { answer1: "https://inspiredtoblog.com/wp-content/uploads/2024/10/response-video1.mp4", answer2: "https://inspiredtoblog.com/wp-content/uploads/2024/10/response-video2.mp4" }; const bubbles = document.querySelectorAll('.chat-bubble'); const videoElement = document.getElementById('myAvatarVideo'); const videoSource = videoElement.querySelector('source'); // Handle chat bubble clicks to swap video bubbles.forEach((bubble) => { bubble.addEventListener('click', () => { const answerKey = bubble.getAttribute('data-answer'); const newVideoSrc = videoAnswers[answerKey]; // Swap the video source and play the new video videoElement.pause(); videoSource.src = newVideoSrc; videoElement.load(); videoElement.play(); }); }); // Handle closing the avatar widget document.getElementById('closeAvatar').addEventListener('click', () => { document.getElementById('avatar-wrapper').style.display = 'none'; });