"BTW, here’s how I fixed click tracking. I mentioned this works with Greasemonkey scripts. Ciao.
var arLinks = document.getElementsByTagName(”a”);
for (var i = 0; i < arLinks.length; i++ ) {
var elmLink = arLinks[i];
if ( elmLink.getAttribute("class") == "l" ) {
elmLink.removeAttribute('onmousedown');
}
}"
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
irreducible elements of quadratic integers filetype:pdf
The click tracking is correctly removed for second and subsequent links. But, for the first and the most relevant link, the click tracking persists. (So that, when I open that link in a new tab, I get a lot of google junk in my url bar, which never gets resolved - since firefox directly opens the pdf, and I never get to see the author's url.)"
-- I couldn't replicate this behaviour. On google.com it linked directly to the pdf. Suggests it's intermittent ie hard to track down :(
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
"BTW, here’s how I fixed click tracking. I mentioned this works with Greasemonkey scripts. Ciao.
var arLinks = document.getElementsByTagName(”a”);
for (var i = 0; i < arLinks.length; i++ ) {
var elmLink = arLinks[i];
if ( elmLink.getAttribute("class") == "l" ) {
elmLink.removeAttribute('onmousedown');
}
}"
"Consider this search:
irreducible elements of quadratic integers filetype:pdf
The click tracking is correctly removed for second and subsequent links. But, for the first and the most relevant link, the click tracking persists. (So that, when I open that link in a new tab, I get a lot of google junk in my url bar, which never gets resolved - since firefox directly opens the pdf, and I never get to see the author's url.)"
-- I couldn't replicate this behaviour. On google.com it linked directly to the pdf. Suggests it's intermittent ie hard to track down :(