Skip to content

Instantly share code, notes, and snippets.

@lcrespilho
Last active August 10, 2017 14:38
Show Gist options
  • Save lcrespilho/b7c14f4a73260d41651c880f8d13373c to your computer and use it in GitHub Desktop.
Save lcrespilho/b7c14f4a73260d41651c880f8d13373c to your computer and use it in GitHub Desktop.
<script>
// somente dispara o pixel do facebook se a origem for Natura
if (document.referrer.indexOf('consultoria.natura.com.br') >= 0) {
var urlPixel = 'https://www.facebook.com/tr/?id=235391240155676&ev=PageView&dl=' + encodeURIComponent(document.location.href) + '&rl=' + encodeURIComponent(document.referrer) + '&if=false&ts=' + Date.now() + '&cd%5Bsite_name%5D=Wizard&v=2.7.19&ec=0&o=28';
var pixel = document.createElement('img');
pixel.width = '1';
pixel.height = '1';
pixel.style.display = 'none';
pixel.src = urlPixel;
document.body.appendChild(pixel);
}
</script>
@lcrespilho
Copy link
Author

Local de instalação da tag
Em qualquer lugar do <body> da página, mas de preferência no topo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment