Hello,
There is a page which does something like (slightly modified):
if (window.opera) {
window.attachEvent("onload", function() {
var sElement = "We are unable to write decent html so you cannot use your favourite browser and we will forever annoy you with it.";
ziggo.components.lightbox.open(bb.html.createElementFromString(sElement));
And I have to click away that annoying box all the time.
I am trying to get around this by using Opera's userscript functions but no luck yet.
Could I prevent those onload events on that page using jquery?
Thanks.