Skip to content

Instantly share code, notes, and snippets.

@rickychilcott
Last active September 30, 2019 14:11
Show Gist options
  • Select an option

  • Save rickychilcott/6fe91d0fba5f57c5af7d621a14544921 to your computer and use it in GitHub Desktop.

Select an option

Save rickychilcott/6fe91d0fba5f57c5af7d621a14544921 to your computer and use it in GitHub Desktop.
Widget Test
<div id="mm-center-test"></div>
<script src="https://gist.githubusercontent.com/rickychilcott/6fe91d0fba5f57c5af7d621a14544921/raw/b5840e2b03f059b73113daf2a2c32d0b573e5335/test.js" type="text/javascript"></script>
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