Hide adverts on the GoDaddy ad-sponsored sites

I have been for a while on the GoDaddy ad-sponsored system as I bought my domains from them(before I bought hosting @ DH).

As you have noticed, if you use this system, they append a javascript at the end of every page (even the ones generated via PHP – quite a problem if you want to generate images using scripts). My hack to just prevent the display of the ad was to hide it using CSS.

Simply add the following code in your CSS:

iframe{ display:none; }

as you can see, it hides all the iframes of the page so obvisouly it works only on a page that does not have an extensive use of iframes as it would be tiresome to have a separate class for allowing the display of other iframes on the page.