ni6hant's Website

Fixed

"An error Occured" with embedded youtube videos on HTML pages with cPanel Editor

Temporary Workaround

Another Better Temporary Workaround

Add the same iframe inside a div container like this:

   <div id="yt-wrapper"></div>
   <script>
      const html = `
       <iframe>.......</iframe>
      `;
      document.getElementById('yt-wrapper').innerHTML = html;
   </script>

For multiples videos together, do this:

<div id="yt-wrapper"></div> 

<script>
      const html = `
      <iframe>.......</iframe>
      `;
      document.getElementById('yt-wrapper').innerHTML = html;
</script>

<p></p> <div id="yt-wrapper-2"></div>

<script>
      const html2 = `
      <iframe>.......</iframe>
      `;
      document.getElementById('yt-wrapper-2').innerHTML = html2;
</script>