Skip to content

Instantly share code, notes, and snippets.

@mandymozart
Created February 12, 2019 17:33
Show Gist options
  • Save mandymozart/95302bf65b7368ef6cc2a4f543910e4e to your computer and use it in GitHub Desktop.
Save mandymozart/95302bf65b7368ef6cc2a4f543910e4e to your computer and use it in GitHub Desktop.
<div id="influencer_shop_widget"></div>
<!-- INFLUENCER MADNESS -->
<script>
var scriptTag = document.createElement('script');
scriptTag.src = 'http://influen.ca/tool.js?api_key=KEY';
var r = false;
scriptTag.onload = scriptTag.onreadystatechange = function () {
if (!r && (!this.readyState || this.readyState == 'complete')) {
// defensive check
r = true;
if (typeof callback === "function") {
// apply() sets the meaning of "this" in the callback
showMyBlog();
}
}
}
document.body.appendChild(scriptTag);
</script>
//////
[influenca=KEY]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment