Created
February 12, 2019 17:33
-
-
Save mandymozart/95302bf65b7368ef6cc2a4f543910e4e to your computer and use it in GitHub Desktop.
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="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