Changer la propriete style [Javascript] - HTML/CSS - Programmation
Marsh Posté le 14-04-2005 à 08:12:26
bon j'ai trouve la reponse...
http://www.snook.ca/archives/000343.html
http://www.shaftek.org/blog/archives/000158.html
table-row est mal intepretee
Marsh Posté le 13-04-2005 à 08:13:59
Hello,
J'ai un probleme de cross-brwoser (compatibilite IE/Mozilla/Netscape).
Une fonction Javascript est appellee pour changer le style d'une ligne TR
<tr id="table<?=$i?>" style="display:none;"> (.....)onClick="javascript:openRow(<?=$i?> )....
La fonction:
function openRow(num)
{
var open = num + 1;
document.getElementById("table"+open).style.display = "table-row";
}
Ca marche sous Mozilla et Netscape mais pas sur I.E. qui renvoit le message 'Could not get the display property argument' (Mozilla aussi mais ca marche toujours).
Des conseiles comment reecrire le code JavaScript?
Thanks!