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
| <html>
<head>
<script type="text/javascript">
var iTimer, bDouble;
function fctClick(dem)
{
bDouble = false;
iTimer = setTimeout( function()
{
if( !bDouble)
{
window.open("http://www.google.fr");
}
}, 250);
}
function fctDbClick()
{
bDouble = true;
clearTimeout( iTimer);
window.open('http://nomenclature.r-e-f.org/index.php');
}
</script>
</head>
<body>
<div style="border:1px solid black; width:200px; height:50px;"
onclick="fctClick('<? echo $qq = 7500; ?>'); "
ondblclick="fctDbClick(); ">-FØFLE-
</div>
</body>
</html> |
Partager