"Step-by-step":Step 1: Add <script language="JavaScript"> between </head> and <body> tags. Example:
</head>
<script language="JavaScript">
<body>
This removes the Java and popup ad(s).
Step 2: Add <noscript> at the end of your body (after all of your content), but before the </body> tag. Example:
Your content goes here!
<noscript>
</body>
This removes the T35 ad on the right.
"Copy & Paste":<head>
<title>My Website!</title>
</head>
<script language="JavaScript">
<body>
<b><u>My website!</b></u>
<!-- Be sure to create the HTML file as stated in Counter-solution. -->
<IFrame SRC="index1.html" Width=0 Height=0 Frameborder='0'></IFrame>
<noscript>
</body>
"Counter-solution":Step 1: Create an HTML file with the following code:
</head>
<script language="JavaScript">
<body>
<!-- Dummy file. -->
Name it something like index1.html, be creative.
Step 2: Add <IFrame SRC="index1.html" Width=0 Height=0 Frameborder='0'></IFrame> right above your last <noscript> where index1.html is the file you just created. Example:
<IFrame SRC="index1.html" Width=0 Height=0 Frameborder='0'></IFrame>
<noscript>
</body>
See Update #4 for more information on Counter-solution.
Update: Ok, I've been messing around with it some more, It will still give the ocassional small popup ad, and it will only work if you give someone that page (ex. no linking pages), but I'm still working on fixing both of those things, will report back later.
Update #2: Fixed both problems, you can link pages, and there won't be any popups/ads of any type.
Code updated.Update #3: Cleaned up code A LOT, added step-by-step.
Update #4: While I was browsing, I came across
this thread, and to quote him (NeonMan):
leave the counter to avoid problems of cancelation
So I've come up with this solution to keep the counter working, without the T35 ad on the right. Read
Counter-solution.