UserJS to show Independent.co.uk articles
Monday, 19. September 2005, 03:16:57
User Maurice noted on the opera.general newsgroup that news.independent.co.uk articles were not being shown in Opera. Apparently, news.independent.co.uk unhides article text only after some advertiser scripts are executed. Sadly, these ad scripts fail and the articles are never shown in Opera. This UserJS fixes this scenario so Opera users can read Independent.co.uk articles...
Download or view the independent-co-uk.js file
Enjoy.
Download or view the independent-co-uk.js file
[B]
if (document.domain.match(/^(news\.)?independent\.co\.uk$/)) {
document.addEventListener("load",
function(e) {
var bodyCopy = document.getElementById("bodyCopyContent");
if (bodyCopy) bodyCopy.style.display = "block";
},
false);
}
[/B]
Enjoy.

