Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
Can you update the script so it works on subdomains of reuters? Change the include to: *reuters.com* and the href check to: if(hrefs[i].href.match(/\/article\//) && hrefs[i].host.indexOf('reuters.com') != -1)
|
|
|
Is there any way I can get an older version? The version I had on my (now dead) laptop worked by rewriting links, instead of messing with the current URL. This is a big deal, because the script doesn't run until the page has loaded (presumably it is triggered by the In short, rewriting links is good; rewriting |
|
|
thanks for this script, it drives me crazy having the articles spread across several pages. |
|
|
Thanks, I use your script to avoid the annoyance. I made one small modification. I often get to Reuters article pages from RSS links. Since Reuters already attaches a query string indicating you're coming from a feed, your script doesn't work there. I just added an if...else inside your first if statement adding &sp=true when there's already a query string and ?sp=true otherwise. |