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
<!-- EXAMPLE ON HOW TO USE DYNAMIC CONTENT --> | |
<h1 id="dynamicContentID">Hi There,</h1> | |
<script type='text/javascript'> | |
var callThisOnReturn = function(resp) { | |
if (resp && resp.contact) { | |
var contact = resp.contact; | |
console.warn('Contact Info Received', contact); // just an example |
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
<script type='text/javascript'> | |
var _ss = _ss || []; | |
_ss.push(['_setDomain', 'http://app.sharpspring.com/net/']); | |
_ss.push(['_setAccount', 'KOI-XXXXX']); | |
_ss.push(['_setResponseCallback', callThisOnReturn]); | |
_ss.push(['_trackPageView']); | |
(function() { | |
var ss = document.createElement('script'); |