I am trying to enable revenue tracking in Optimizely.

I have customized the jQuery snippet that the Optimizely knowledge base provides and installed it on the last page prior to the completion of the checkout process.

Here is the "Complete Booking" button that I am trying to connect my snippet to:

onmousedown I want to fire this function:

<script type="text/javascript">
  var optimizely = optimizely || [];
  $("input[value='Complete Booking'].submit").live("mousedown", function() {
     optimizely.push(['trackEvent', 'booking_complete', total]);
  });
</script>

There is a variable called total that exists elsewhere in the DOM that has the total price of the item purchased.

However, when I install this script, it does not track revenue. I suspect a jQuery issue in my rewrite of the official Optimizely function. Does anyone have some insight into this?

Update

I realized that I probabally need to call $(document).ready(function() in order for the jQuery to trigger. I also am now passing the value in cents rather than dollars. Also tried using .submit() rather than .onmousedown(). I also changed the value in the push to add_cart_button_clicked, just like in the revenue tracking tutorial on Optimizely's site. Here is my updated code, but it is still not working.

<script type="text/javascript">
    $(document).ready(function(){
        var optimizely = optimizely || [];
        var revenueInCents = total * 100;
        $("input[value='Complete Booking'].submit").submit(function() {
            optimizely.push(['trackEvent', 'add_cart_button_clicked', revenueInCents]);
        });
    }
</script>
link|improve this question

75% accept rate
It's probably not working because you're pushing "booking_complete" event on a button that is probably submitting a form. So user is taken from a page before your tracking call can be even processed. – WTK Oct 7 '11 at 8:36
1  
First, be sure that total is a cents value. ie, $4.53 should be passed as 453. Second, can you confirm your jQuery selector is correct? should .submit (a CSS class) be :submit (a sizzle selector)? – yahelc Oct 8 '11 at 2:03
The total does need to be in cents @yahelc. Good call on that one. I am also including the code of the button that I am trying to get attach the action to: <input class="submit" type="submit" value="Complete Booking"> – TrentonMcManus Oct 10 '11 at 4:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.