Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 6th, 2012  |  syntax: None  |  size: 0.46 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // ==UserScript==
  2. // This fixes the most annoying thing I've ever seen on the ING DIRECT website. Sorry, ING DIRECT folks.
  3. // @match https://secure.ingdirect.com/*
  4. // ==/UserScript==
  5.  
  6. var waiter;
  7. waiter = function() {
  8.   if (mask = document.getElementById('adWizardPopup_mask')) {
  9.     mask.parentNode.removeChild(mask);
  10.  
  11.     ad = document.getElementById('adWizardPopup_c');
  12.     ad.parentNode.removeChild(ad);
  13.   } else {
  14.     setTimeout(waiter, 1000);
  15.   }
  16. };
  17. waiter();