Skip navigation.

Prepare!

Lee Harvey's Zombie Hit Parade

Posts tagged with "dutch"

UserJS for Belastingdienst.nl

, , , ...

Most Opera users experience display issues when accessing the following sites:


So, I've written this simple UserJS script to properly apply the correct stylesheet after the page has loaded:

Download/view the belastingdienst.js script:
if (document.domain.match(/^(www\.)?toeslagen\.nl$/) ||
    document.domain.match(/^(www\.)?douane\.nl$/) ||
    document.domain.match(/^(www\.)?belastingdienst\.nl$/)) {

    document.addEventListener("load",
        function() {
            if (SwitchStyleSheet) SwitchStyleSheet("Standaard");
    }, 0);
}

Enjoy.