Expand my Community achievements bar.

SOLVED

What is the proper syntax to pass a value into a purchase event?

Avatar

Level 3

I have the following script in custom code, where I am trying to pass a value to the purchase event variable.. but I am not having any luck. Any suggestions?

$("input[name='loanAmount']").mouseleave(function(){ var loanAmount = $("input[name='loanAmount']").val(); if (loanAmount.length){ s.events= "purchase=" +loanAmount;} else { return false} });

Thanks for your help

1 Accepted Solution

Avatar

Correct answer by
Level 5

Hi Darius,

you should be setting the event and s.products variable:

s.events="purchase";

s.products=";HPCalculator;1;105.00,;";

There's an excellent explanation on this page:

https://webanalyticsfordevelopers.com/2013/06/25/the-thank-you-page-tracking-purchases/

Ali

View solution in original post

1 Reply

Avatar

Correct answer by
Level 5

Hi Darius,

you should be setting the event and s.products variable:

s.events="purchase";

s.products=";HPCalculator;1;105.00,;";

There's an excellent explanation on this page:

https://webanalyticsfordevelopers.com/2013/06/25/the-thank-you-page-tracking-purchases/

Ali