Created
August 19, 2018 14:11
-
-
Save funkyboy/cf45dcc9354ad10484a5884f68b8c11b to your computer and use it in GitHub Desktop.
This file contains 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
<div id="my-widget"></div> | |
<script src="https://mydomain.com/widget.js" type="text/javascript"></script> |
This file contains 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
(function() { | |
var widget = document.getElementById("my-widget"); | |
widget.innerHTML = "<link type='text/css' href='https://mydomain.com/widget.css' rel='stylesheet'>" + | |
"<div class='my-content'>"+ | |
"This is my content."+ | |
"</div>"; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment