Created
October 29, 2021 18:07
-
-
Save WalrusSoup/f55c598d6640bea638484e5165d52efb to your computer and use it in GitHub Desktop.
Lazy Load facebook pixel
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
var facebookLoader = function() { | |
window.removeEventListener('scroll', facebookLoader); | |
!function(f,b,e,v,n,t,s) | |
{if(f.fbq)return;n=f.fbq=function(){n.callMethod? | |
n.callMethod.apply(n,arguments):n.queue.push(arguments)}; | |
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; | |
n.queue=[];t=b.createElement(e);t.async=!0; | |
t.src=v;s=b.getElementsByTagName(e)[0]; | |
s.parentNode.insertBefore(t,s)}(window, document,'script', | |
'https://connect.facebook.net/en_US/fbevents.js'); | |
fbq('init', 'YOUR_ID_HERE'); | |
fbq('track', 'PageView'); | |
} | |
window.addEventListener('scroll', facebookLoader); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment