YouTube introduces iframe not showing up in Safari

Link http://thecodeclub.org/ and there is a video on YouTube.

Works fine in Chrome, but iframe remains empty in Safari?

Has anyone else come across this or had a fix?

<div class="wrapper wrapper-style2">
<article id="work">
  <header>
    <h2>What Most Schools Don't Teach</h2>
    <p>Even rap stars are learning to code...</p>
  </header>
 <div class="video-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/nKIu9yen5nc?rel=0" frameborder="0" allowfullscreen></iframe>
  </div>
<a href="#courses" class="button button-big">The Courses.</a>

</article>
 </div>
+3
source share
1 answer

This eventually caused the https problem. Changed it to http as shown below and it worked fine.

<iframe width="560" height="315" src="http://www.youtube.com/embed/KX5PdVd1-OU" frameborder="0" allowfullscreen></iframe>
+2
source

All Articles