Skip to content

Instantly share code, notes, and snippets.

@shirokoweb
Last active February 19, 2018 21:59
Show Gist options
  • Save shirokoweb/deb51939ee777d7b64782bb8c575eeb6 to your computer and use it in GitHub Desktop.
Save shirokoweb/deb51939ee777d7b64782bb8c575eeb6 to your computer and use it in GitHub Desktop.
Load async YT videos
<script>
function init() {
var vidDefer = document.getElementsByTagName('iframe');
for (var i=0; i<vidDefer.length; i++) {
if(vidDefer[i].getAttribute('data-src')) {
vidDefer[i].setAttribute('src',vidDefer[i].getAttribute('data-src'));
} } }
window.onload = init;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment