- 3,546
- Posts
- 21
- Years
- Age 34
- Oakland Ca
- Seen Dec 29, 2008
is there an html/php code that stops popups from appearing on a site?
i ask not for myself but for my friend...
i ask not for myself but for my friend...
<!--Start killing Popups-->
<script language='javascript'>
NS_ActualOpen=window.open;
function NS_NullWindow(){this.window;}
function NS_NewOpen(url,nam,atr){return(new NS_NullWindow());}
window.open=NS_NewOpen;
</script>
<!--End code for killing Popups-->