Skip to content

Instantly share code, notes, and snippets.

@davidhund
Created November 22, 2018 20:55
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 davidhund/661eb0346222e4fa114c05e054601e79 to your computer and use it in GitHub Desktop.
Save davidhund/661eb0346222e4fa114c05e054601e79 to your computer and use it in GitHub Desktop.
test js
// Test (ignoreme)
(function(win,doc){
var sc = doc.getElementById('myScript');
if (sc) {
var el = doc.createElement('p');
el.innerHTML = 'Yo, this is from the <b>SCRIPT</b> include! :-)';
el.style.color = 'green';
sc.parentNode.insertBefore(el, sc.nextSibling);
}
})(window, document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment