Just ran into this again today and realized it is even worse than I thought. I'm working on a new Dell computer - launched IE to test a website and see the Google Related ads at the bottom of my site. Here's why this is alarming :
1. This is a BRAND NEW COMPUTER - I have not installed anything! Google Toolbar was pre-installed!
2. I did not use search - I typed the url into the address bar
More people are seeing these ads than we initially thought. I'm livid and want to do something about it but no idea what....
Searched the web and found this code snippet - put it in my header and it seems to be working for now :
Code:
<script type="text/javascript">
var cnt = 0;
var interval = 0;
var f = function () {
var css = {cssText:'display:none !important; visibility: hidden !important'};
var gr = $('iframe[src^="http://www.gstatic.com/webgps/grelated"]');
gr.css(css).prev('div').css(css);
if (++cnt > 5 || gr.length) clearInterval(interval);
};
f();
$(function () {
interval = setInterval(f, 500);
});
</script>