Skip to content

Instantly share code, notes, and snippets.

@acoyfellow
Last active March 2, 2016 16:36
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 acoyfellow/2db737c8475cacf2c5b0 to your computer and use it in GitHub Desktop.
Save acoyfellow/2db737c8475cacf2c5b0 to your computer and use it in GitHub Desktop.
pixel & redirect pure javascript
<!DOCTYPE html>
<html>
<head>
<title>Redirecting To Your Product...</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Facebook Pixel Code -->
<script>
!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','//connect.facebook.net/en_US/fbevents.js');
fbq('init', '718161058327082');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=718161058327082&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<script>
setTimeout(function(){
var redirectDestinationUrl = 'http://realllqwick.com/?a=5143&c=131238&s1=';
window.location.href = redirectDestinationUrl;
},1000);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment