Last active
September 30, 2019 14:11
-
-
Save rickychilcott/6fe91d0fba5f57c5af7d621a14544921 to your computer and use it in GitHub Desktop.
Widget Test
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
| <div id="mm-center-test"></div> | |
| <script src="https://gist.githubusercontent.com/rickychilcott/6fe91d0fba5f57c5af7d621a14544921/raw/b5840e2b03f059b73113daf2a2c32d0b573e5335/test.js" type="text/javascript"></script> |
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
| console.log("Start") | |
| var paragraph = document.createElement("p") | |
| paragraph.innerText = "I'm a paragraph of text. Today's Date: " + (new Date()).toDateString() | |
| var parentDiv = document.querySelector("#mm-center-test") | |
| parentDiv.appendChild(paragraph) | |
| console.log("End") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment