Shentia Simmons

"I had an amazing opportunity to meet Cordelia Gaffar in Dallas Texas at the Driven To Success Money Mind Spirit Retreat, and what a powerful experience I encountered! When I walked into the conference I felt defeated, unsure of myself and abilities. After the conference and a private 1:1 session with Cordelia I felt empowered and my spirit and energy were both uplifted and restored! I signed up with Cordelia for the Intensive 30 Day Replenish Me Reset in January 2020 to continue my life changing transformation! I highly recommend this powerful experience to everyone that needs to release, renew and restore from everyday life!"

// Target a specific iframe by its ID (e.g. "widget50") function disableAutoplay(iframeId) { const iframe = document.getElementById(iframeId); if (!iframe) { console.warn(`No iframe found with id: ${iframeId}`); return; } // Remove 'autoplay' from the allow attribute const allowAttr = iframe.getAttribute('allow') || ''; const updated = allowAttr .split(';') .map(s => s.trim()) .filter(s => s.toLowerCase() !== 'autoplay') .join('; '); iframe.setAttribute('allow', updated); // Also strip autoplay from the src URL (for YouTube embeds) const url = new URL(iframe.src); url.searchParams.set('autoplay', '0'); iframe.src = url.toString(); console.log(`Autoplay disabled for: ${iframeId}`); } // Usage — pass the iframe's id: disableAutoplay('widget50');