1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<script type='text/javascript'>
function dblclick(lien){
lien.clicked=lien.clicked?false:true;
if(lien.clicked){
clearTimeout(hold);
lien.clicked=true;
window.open(lien.href)
return false;
}
else{
var hold=setTimeout(function(){lien.clicked=false;
return true;},200)
}}
</script>
<title>Nouvelle page 1</title>
</head>
<body>
<a href="about:blank" onclick="return dblclick(this)" >ici </a>
</body>
</html> |
Partager