Created
May 5, 2014 19:13
-
-
Save luisdalmolin/7721132e736381dfb7b5 to your computer and use it in GitHub Desktop.
Adwords Conversion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function adwords_conversion(google_conversion_id, google_value, google_conversion_label) { | |
var img = new Image(); | |
img.src = 'https://www.googleadservices.com/pagead/conversion/' + google_conversion_id + '/?value='+google_value+'&label='+google_conversion_label+'&script=0'; | |
img.height = 1; | |
img.width = 2; | |
document.body.appendChild(img); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment