Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inserting Google Adwords Conversion Tracking with Javascript or jQuery

I'm pretty new to javascript, and therein probably lies my problem. I'm trying to track AdWords conversions that occur within a widget on our site. The user fills in a form and the result from the widget is published in the same div without a page refresh. The issue I'm having is when I try to appendChild (or append in jQuery) both script elements in Google's code (shown below) the page gets 302 redirected to a blank Google page (or at least that's what it looks like through FireBug). I'm able to provide a callback method for the results of the form, and that's where I'm trying to insert the AdWords tracking code. For reference, this is the code provided by Google:

<script type="text/javascript"> /* <![CDATA[ */ var google_conversion_id = 993834405; var google_conversion_language = "en"; var google_conversion_format = "3"; var google_conversion_color = "ffffff"; var google_conversion_label = "bSpUCOP9iAIQpevy2QM"; /* ]]> */ </script> <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js"> </script> <noscript> <div style="display:inline;"> <img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/993834405/?label=bSpUCOP9iAIQpevy2QM&amp;guid=ON&amp;script=0"/> </div> </noscript> 

Pretty standard stuff. So, what I'm trying to do is insert this into the results page using the callback method (which is provided). Frankly, I'm redirected no matter when I try to insert this code using js or jQuery (either on original page load or in the callback) so maybe the callback bit is irrelevant, but it's why I'm not just pasting it into the page's code.

I've tried a number of different ways to do this, but here's what I currently have (excuse the sloppiness. Just trying to hack my way through this at the moment!):

function matchResultsCallback(data){      var scriptTag = document.createElement('script');     scriptTag.type = "text/javascript";     scriptTag.text = scriptTag.text + "/* <![CDATA[ */\n";     scriptTag.text = scriptTag.text + "var google_conversion_id \= 993834405\;\n";       scriptTag.text = scriptTag.text + "var google_conversion_language \= \"en\"\;\n";        scriptTag.text = scriptTag.text + "var google_conversion_format \= \"3\"\;\n";     scriptTag.text = scriptTag.text + "var google_conversion_color \= \"ffffff\"\;\n";     scriptTag.text = scriptTag.text + "var google_conversion_label \= \"bSpUCOP9iAIQpevy2QM\"\;\n";     scriptTag.text = scriptTag.text + "/* ]]> */\n";     $('body').append(scriptTag);      $('body').append("<script type\=\"text\/javascript\" src\=\"http://www.googleadservices.com/pagead/conversion.js\" />");     //I have also tried this bit above using the same method as 'scriptTag' with no luck, this is just the most recent iteration.      var scriptTag2 = document.createElement('noscript');     var imgTag = document.createElement('img');     imgTag.height = 1;     imgTag.width = 1;     imgTag.border = 0;     imgTag.src = "http://www.googleadservices.com/pagead/conversion/993834405/?label=bSpUCOP9iAIQpevy2QM&amp;guid=ON&amp;script=0";      $('body').append(scriptTag2);     $('noscript').append(imgTag); } 

The really odd thing is that when I only insert one of the script tags (it doesn't matter which one), it doesn't redirect. It only redirects when I try to insert both of them.

I've also tried putting the first script tag into the original page code (as it's not making any calls anywhere, it's just setting variables) and just inserting the conversions.js file and it still does the redirect.

If it's relevant I'm using Firefox 3.6.13, and have tried the included code with both jQuery 1.3 and 1.5 (after realizing we were using v1.3).

I know I'm missing something! Any suggestions?

like image 391
Kevin Pope Avatar asked Feb 22 '11 23:02

Kevin Pope


People also ask

How do I add conversion tracking code to Google Ads?

To get started, click on the Tools and Analysis tab in Google Ads, and select Conversions from the drop-down menu, which brings up the All conversions page. Click on the Conversions tab, then click the +Conversion button to create your first conversion.

Does Google Ads automatically track Conversions?

Also, app downloads and in-app purchases from Google Play, and local actions will automatically be recorded as conversions, and no tracking code is needed.


1 Answers

Nowadays it is convenient to use the Asynchronous Tag at http://www.googleadservices.com/pagead/conversion_async.js that exposes the window.google_trackConversion function.

This function can be used at any time. For example after submitting a form, like in your case.

See https://developers.google.com/adwords-remarketing-tag/asynchronous/


Update 2018

Situation changed and it seems that you have more options now with the gtag.js: https://developers.google.com/adwords-remarketing-tag/

like image 87
LeZuse Avatar answered Sep 28 '22 09:09

LeZuse