Skip to content

Instantly share code, notes, and snippets.

@joshdcomp
Last active April 23, 2019 19:27
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 joshdcomp/e3d93c610a7d13afa572efe34fe090bd to your computer and use it in GitHub Desktop.
Save joshdcomp/e3d93c610a7d13afa572efe34fe090bd to your computer and use it in GitHub Desktop.
An IE-inclusive native html include pattern based on https://www.filamentgroup.com/lab/html-includes/
<iframe
src="/asset/you/wanna/include.html"
style="visibility: collapse; position: absolute; height: 0; width: 0;left: -100%;top: -100%;"
onload="this.parentNode.insertBefore((this.contentDocument.body || this.contentDocument).firstChild, this);this.parentNode.removeChild(this)"
></iframe>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment