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
<!-- | |
html offer: builds referrer cookie and forces redirect via javascript | |
--> | |
<script type="text/javascript"> | |
//destination url | |
var recipeURL="testPage.html"; | |
/* | |
setCookie() - //logic to build cookie b/c other custom js files may not load/execute before the redirect is required |
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
if("undefined"==typeof($tG)){$tG={};} | |
/* | |
$tG.formAnalysis() | |
- pv_formId = "id" property for html form element being monitored | |
- pv_event = status of form event: abandon, success, error | |
*/ | |
$tG.formAnalysis = function(pv_formId,pv_event) { | |
var subDetail=""; | |
var formId=pv_formId; | |
pv_event=pv_event.toLowerCase(); |