Welcome to Cordelia Gaffar's Website

Welcome to Cordelia Gaffar's Website

Where presence replaces pressure

‎‎

Cordelia’s work helps leaders:

  • Restore internal clarity and emotional control
  • Reconnect to confidence that doesn’t rely on constant proving
  • Strengthen relationships without sacrificing authority
  • Replace burnout cycles with sustainable leadership energy
  • Lead with presence that commands trust without force

‎‎

Because the room shifts when you walk in—not because of your title, but because of your presence.

Send a Message

I offer profound self-nurturing practices and Joy-Bonding™ techniques. Share your thoughts or questions, and let's embark on this journey of healing and discovery together.

Contact Me

Follow Me
// 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');