
Untitled
By: a guest on
Jul 6th, 2012 | syntax:
None | size: 0.46 KB | hits: 17 | expires: Never
// ==UserScript==
// This fixes the most annoying thing I've ever seen on the ING DIRECT website. Sorry, ING DIRECT folks.
// @match https://secure.ingdirect.com/*
// ==/UserScript==
var waiter;
waiter = function() {
if (mask = document.getElementById('adWizardPopup_mask')) {
mask.parentNode.removeChild(mask);
ad = document.getElementById('adWizardPopup_c');
ad.parentNode.removeChild(ad);
} else {
setTimeout(waiter, 1000);
}
};
waiter();