View Single Post
Old 11-09-2005, 11:50 AM   #2
Laurens
Jah Blessed
Laurens is no ebook tyro.Laurens is no ebook tyro.Laurens is no ebook tyro.Laurens is no ebook tyro.Laurens is no ebook tyro.Laurens is no ebook tyro.Laurens is no ebook tyro.Laurens is no ebook tyro.Laurens is no ebook tyro.Laurens is no ebook tyro.
 
Laurens's Avatar
 
Posts: 1,295
Karma: 1373
Join Date: Apr 2003
Location: The Netherlands
Device: iPod Touch
Another approach would be to extract the filename and append that to the base "printable" URI:

Code:
document.onanchorlink = function(link) {
link.referrer = link.uri;
var filename = link.uri.substring(link.uri.lastIndexOf('/'));
link.uri = "http://onmilwaukee.com/articles/print" + filename;
};
Laurens is offline