Advertisement
Guest User

Untitled

a guest
Oct 6th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!-- Start Marketo Associate Lead function -->
  2.     <script>
  3.     //ensure that the function only fires on a thank you page as per http://developers.marketo.com/blog/merge-anonymous-visitor-activity-when-visitor-fills-out-form/
  4.     if(document.URL.indexOf("thank-you") != -1) {
  5.         Munchkin.munchkinFunction('associateLead',{Email: decodeURIComponent("")},'da39a3ee5e6b4b0d3255bfef95601890afd80709');
  6.         console.log("fired the associateLead function");
  7.    
  8.     //ensure that the function only fires on a thank you page as per http://developers.marketo.com/blog/merge-anonymous-visitor-activity-when-visitor-fills-out-form/
  9.         } else if(document.URL.indexOf("thank_you") != -1) {
  10.         Munchkin.munchkinFunction('associateLead',{Email: decodeURIComponent("")},'da39a3ee5e6b4b0d3255bfef95601890afd80709');
  11.         console.log("fired the associateLead function");
  12.     }  
  13.     </script>
  14. <!-- End Marketo Associate Lead function -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement