Skip to content

Instantly share code, notes, and snippets.

@JKring
Created October 18, 2012 03:27
Show Gist options
  • Save JKring/3909709 to your computer and use it in GitHub Desktop.
Save JKring/3909709 to your computer and use it in GitHub Desktop.
function frmAdd() {
var ifrm = document.createElement('iframe');
ifrm.style.position='absolute';
ifrm.style.top='-999em';
ifrm.style.left='-999em';
ifrm.src = "http://stagetwo.com";
ifrm.id = 'frmId';
document.body.appendChild(ifrm);
};
window.onload = frmAdd;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment