Last active
April 23, 2019 19:27
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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