Click to See Complete Forum and Search --> : help plz


abstract
09-21-2003, 03:12 PM
hi
i would like to know if there is a java or html script that stops ads

thanks in advanced

soccer362001
09-21-2003, 03:16 PM
If you mean ads as in banner ads put this
<!-- <nobanner> -->
after you html tag.

abstract
09-21-2003, 03:19 PM
i meant the other ad

soccer362001
09-21-2003, 03:20 PM
what other ad

abstract
09-21-2003, 03:21 PM
as in the one when a window opens

soccer362001
09-21-2003, 03:22 PM
no you cannot stop popups with javascript although you can block them with a toolbar which you can download from google.com.

AdamBrill
09-21-2003, 03:34 PM
Actually, if you put this in the head of your page, it should stop popup adds:<script type="text/javascript">
window.open = function(){
return false;
}
</script>However, it will also stop any other window.open commands on your page...

soccer362001
09-21-2003, 03:35 PM
I asked the same question a while back a some body told me it was impossible to stop popups with js.

AdamBrill
09-21-2003, 03:40 PM
LOL, too bad you didn't ask ME! :D It is supposed to be impossible, but this is basically a hack to disable the window.open command...

soccer362001
09-21-2003, 03:42 PM
Well I'll have to give it a try once I get some time.