let isPrep = false; function YTEmbed ( elementBindID, videoID ) { if ( !isPrep ) { console.log( '[ YT-Embed ] Preparing...' ); isPrep = true; const css = document.createElement( 'link' ); css.rel = 'stylesheet'; css.href = 'https://static.janishutz.com/css/yt-embed.css'; // css.href = 'http://localhost:8081/yt-embed.css'; document.head.appendChild( css ); } const el = document.getElementById( elementBindID ); el.innerHTML = `

YouTube Video was not loaded automatically to preserve your privacy. If you wish to load it here, click the button below!

View on YouTube
`; } function activateYTEmbed ( elementBindID, videoID ) { document.getElementById( elementBindID ).innerHTML = ``; }