Modification d'un onmouseover
Bonjour,
Dans un js j'essaie de modifier les différents attributs d'un tableau html via :
Code:
1 2 3 4 5 6
|
$v('tab').onmousedown= function() { return getindex(event,this,arret,arret_tmp); return false; }
$v('tab').onmouseup= function() { getindex(event,this,arret,arret_tmp); }
$v('tab').onmouseover= function() { getindex(event,this,arret,arret_tmp); }
$v('tab').onmouseout= function() { getindex(event,this,arret,arret_tmp);}
$v('tab').oncontextmenu= function() { return false; } |
Cela fonctionne très bien sous mac os X via MAMP mais ne fonctionne pas du tout sous windows XP via EasyPhp
Quelqu'un aurait il une idée du pourquoi ce différentiel de fonctionnement ?
Merci d'avance,
P.