Created
March 23, 2011 18:04
-
-
Save williamdodson/883602 to your computer and use it in GitHub Desktop.
Track PDF files in Google Analytics with jQuery
This file contains hidden or 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
/** | |
* Place this code after your Google Analytics scripts | |
*/ | |
$(function() { | |
/* any links to PDFs are tracked with GA */ | |
$('a[href$="pdf"]').click(function(e){ | |
/* grab only the file name without the extension */ | |
var fullpath = $(this).attr('href'); | |
var filename = fullpath.substr(fullpath.lastIndexOf("/")+1, fullpath.length); | |
_gaq.push(['_trackPageview', '/'+filename]); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some quick-and-dirty jQuery code that tracks clicks on PDF files using Google Analytics. —BD