Skip to content

Instantly share code, notes, and snippets.

@tomazursic
Last active June 30, 2017 21:41
Show Gist options
  • Save tomazursic/43106b42ca28cd75176a976bcf775987 to your computer and use it in GitHub Desktop.
Save tomazursic/43106b42ca28cd75176a976bcf775987 to your computer and use it in GitHub Desktop.
Create iframe
(function(){
document.body.innerHTML = '';
document.head.innerHTML = '';
var i = document.createElement('iframe');
i.id='theiframe';
i.style.width = '100%';
i.style.height='100%';
i.src = '?';
var wrap = document.createElement('div');
wrap.style.margin = 'auto';
wrap.style.width = '90vh';
wrap.style.height = '90vh';
wrap.style.resize = 'both';
wrap.style.overflow = 'hidden';
wrap.appendChild(i);
document.body.appendChild(wrap);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment