Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am Trying to accomplish ecommerce tracking with pure javascript.

Here is my Code:

jQuery(document).ready( function (){

belegnummer = jQuery("#belegnr").text();
kundennummer = jQuery("#kundennummer").text();
menge = 0;
jQuery(".menge").each(function () {
    menge = menge + parseInt(jQuery(this).text());
})

_gaq.push(['_addTrans',
belegnummer,  // order ID - required
kundennummer,   // affiliation or store name
menge,          // total - required
'',           // tax
'',              // shipping
'',       // city
'',     // state or province
''             // country
]);


jQuery(".singleproduct").each(function () {

total = jQuery(this).find(".menge").text();
muenzid = jQuery(this).find(".muenzid").text();

_gaq.push(['_addItem',
belegnummer,           // order ID - required
muenzid,           // SKU/code - required
'',             // product name
'',             // category or variation
'1',          // unit price - required
total               // quantity - required

]); 
})
_gaq.push(['_trackTrans']); //submits transaction to the Analytics servers  



})      </script>

The tracking works fine except for the addItem. There is no data sent to google analytics. I have tried all kinds of variations and also checked that the variables are being returned correctly by jquery. There is no Javascript error.

Has anyone accomplished this already?

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.