Thank You!

Sorry! Not enough information available.

PLEASE CHECK YOUR INBOX✨

We have sent you an email to verify you.

Please click the verification link, and then log-in below to access all the goodies!

All members can access the  Freebies✨Vault!

Dive into the world of blogging knowledge, and access a collection of essential tools and guides designed to kickstart your blogging journey.

OUR PROGRAMS✨

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