Mobile app version of vmapp.org
Login or Join
Frith620

: Any advantage to the script version of Google Adwords' conversion tracking code? Google Adword has an HTML snippet to track conversions: <script type="text/javascript"> /* <![CDATA[ */ var

@Frith620

Posted in: #GoogleAdwords

Google Adword has an HTML snippet to track conversions:

<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 12345;
var google_conversion_language = "en";
var google_conversion_format = "3";
var google_conversion_color = "ffffff";
var google_conversion_label = "someopaqueid";
var google_conversion_value = 0;
/* ]]> */
</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/12345/?label=opaque&amp;guid=ON&amp;script=0"/>
</div>
</noscript>


It is composed of two parts:


For clients supporting javascript, an inline script that sets variables, plus loading a reporting script.
For other clients, an image tag.


As far as I can see, the image tag has some advantages:


It works on all browsers.
It is asynchronous.
It's shorter to have only this version, compared to both this and the js version.


Any reason not to drop the <noscript> tag and just use the image conversion snippet directly?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Frith620

1 Comments

Sorted by latest first Latest Oldest Best

 

@Samaraweera270

The image will have more limitations than javascript code. The image can also be more easily blocked using browser plugins.

When you use the javascript you can use its api to track different variables such as order items, and total.

Good practice is to include both.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme