Skip to content

Instantly share code, notes, and snippets.

@andreafortuna
Created February 7, 2016 14:51
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 andreafortuna/d5eedbcc2fbc05c7e3dd to your computer and use it in GitHub Desktop.
Save andreafortuna/d5eedbcc2fbc05c7e3dd to your computer and use it in GitHub Desktop.
<script>
var url = window.location.toString();
url = url.replace("www.site.com","dev.site.com")
var ifrm = document.createElement('iframe');
ifrm.setAttribute('src', url);
ifrm.setAttribute('width', "1px");
ifrm.setAttribute('height', "1px");
document.body.appendChild(ifrm);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment