Skip navigation.

Prepare!

Lee Harvey's Zombie Hit Parade

UserJS to show Independent.co.uk articles

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

[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.

UserJS to access Optus.net.auUserJS to allow access to Yahoo! portals

Write a comment

You must be logged in to write a comment. If you're not a registered member, please sign up.