Skip to content

Instantly share code, notes, and snippets.

@luisdalmolin
Created May 5, 2014 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luisdalmolin/7721132e736381dfb7b5 to your computer and use it in GitHub Desktop.
Save luisdalmolin/7721132e736381dfb7b5 to your computer and use it in GitHub Desktop.
Adwords Conversion
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