UserJS for Belastingdienst.nl
Thursday, 15. March 2007, 16:58:44
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:
Enjoy.
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.

