1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nouvelle page 1</title>
<script type='text/javascript'>
function Tester(){
try{
if(MaPop.location.href){}
}
catch(e){
clearInterval(runner)
alert ('plus de pop' ) }
}
var MaPop = window.open('about:blank','titre');
var runner
function launch(){
runner = setInterval(function(){Tester()},500)
}
</script>
</head>
<body onload='launch()'>
</body>
</html> |
Partager