Skip to content

Instantly share code, notes, and snippets.

@muloka
Created May 11, 2011 17:29
Show Gist options
  • Save muloka/966915 to your computer and use it in GitHub Desktop.
Save muloka/966915 to your computer and use it in GitHub Desktop.
// saw this on Forrst, forget who posted it though
$('[href$="pdf"],.pdf').live("click", function(){
// get the link attribute and find the filename of the PDF
var pdfLink = $(this).attr("href"),
pdfLocation = pdfLink.substr(pdfLink.lastIndexOf("/")).replace("/","");
_gaq.push(['_trackPageview', pdfLocation]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment