Last active
August 10, 2017 14:38
-
-
Save lcrespilho/b7c14f4a73260d41651c880f8d13373c to your computer and use it in GitHub Desktop.
This file contains 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
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Local de instalação da tag
Em qualquer lugar do
<body>
da página, mas de preferência no topo.