Skip to content

Instantly share code, notes, and snippets.

@postman31
Created February 1, 2017 20:30
Show Gist options
  • Save postman31/fb9527056c6d70ffb6152cd52388ccab to your computer and use it in GitHub Desktop.
Save postman31/fb9527056c6d70ffb6152cd52388ccab to your computer and use it in GitHub Desktop.
<html>
<head>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
</script>
</head>
<body>
<h1>no file link found</h1>
<script>
// this sript track file link clicks and redirects to file
// supposed URL is yoursite.com/this_page.html?t=samePathTargetFile.foo
var regex = /\?t=(.*)/;
var targetLink = document.location.href.match(regex)[1];
redirectCallback = (targetLink) ? function() {
var link = document.location.href.match(regex)[1];
document.location = link;
} : function () {};
ga('create', 'UA-XXXXXX-Y', 'auto');
ga('send', 'pageview', {
hitCallback:redirectCallback
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment