<tr onmouseover="$('#actions').show();" onmouseout="$('#actions').hide();" >
<td>
<a onclick="showContacts();">Group Name</a>
</td>
<td>
<span id="actions" style="display:none;">
<img src="../images/Delete-icon.png" onclick="del();"/>
<img src="../images/add-16.png" onclick="loadpage('contacts.php');" />
<img src="../images/mail.png" onclick="send();" />
</span>
</td>
</tr>
This is my code. I'm trying to show the 3 images in the second <td>
when the <tr>
is hovered. Images appear on hovering the text in the first <td>
but disappears when the mouse leaves the text.
This happens only in my FF (v3.6), but works fine in IE and Chrome.
Can someone help me solve this please?