j'ai fait commeaç:
<div style='background-color:#FFFFFF' name='r",$row,"_c",$col,"' onfocus='javascript:swap(this,\"",$k,"\" );' onclick='javascript:swap(this,\"",$k,"\" );'>
et pour le JS:
<script>
function swap(div_id,img_id)
{
c = div_id.style.backgroundColor;
if (c == '#000000' c = '#FFFFFF';
else c = '#000000';
div_id.style.backgroundColor = c;
}
</script>
par contre, mes div sont dans un tableau et ils contiennent une image:
<td align=center valign=middle width=340><div style='background-color:#FFFFFF' name='r3_c8' onfocus='javascript:swap(this,"dscf0128.jpg" );' onclick='javascript:swap(this,"dscf0128.jpg" );'><img width=300 src='img_tmp/th_dscf0128.jpg' border=0></div></td>
et! quand je swappe la couleur, bah c pas cool, ça affiche noir que dans la zone du div (dans son height je veux dire )
j'ai essayé en mettant au div un height=100% mais marche po
comment puyis je faire ?