Skip to content

Instantly share code, notes, and snippets.

@webmasterninjay
Forked from bjmiller121/iframe_defer.js
Created February 26, 2019 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webmasterninjay/22ec041f7e86f7205b8cc0f8f9ea460e to your computer and use it in GitHub Desktop.
Save webmasterninjay/22ec041f7e86f7205b8cc0f8f9ea460e to your computer and use it in GitHub Desktop.
Defer loading of iframes
/**
* Defer iframe loading.
*
* Markup:
* <div class="defer-iframe" data-src="{SOURCE URL}" data-{ATTR}="{VAL}"></div>
*/
$(window).load( function(){
if ($('.defer-iframe').length) {
$('.defer-iframe').each( function() {
var $iframe = $('<iframe frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>');
$iframe.attr($(this).data());
$(this).append($iframe);
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment