Economist.com earliest comment first

By Kam-Hung Soh Last update Jun 24, 2009 — Installed 74 times.
// ==UserScript==
// @name         Economist.com earliest comment first
// @namespace    kamhungsoh.com
// @description  Show an article's comments, earliest comment first.
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js
// @include      http://www.economist.com/*
// ==/UserScript==

$("a[href$='mode=comment&intent=readBottom']").each(function(i) {
  this.href = this.href + "&sort=asc";
});

$("a[href$='mode=comment&intent=postTop']").each(function(i) {
  this.href = this.href + "&sort=asc";
});