I have
<table width="60" height="60" cellpadding="0"
cellspacing="0" border="0" style="float: left; margin: 1px"
background="images/data/source_red.gif">
<tbody>
<tr>
<td act1="7" act3="8" store="true" art_id="4949" cnt="1" div_id="AA_4949"
onmouseover="artifactAlt(this,event,2)"
onmouseout="artifactAlt(this,event,0)"
valign="bottom"
style="background-image: url("images/d.gif"); cursor: pointer;"> </td>
</tr>
</tbody>
</table>
I want to make click on the element that rises when onmouseover="artifactAlt(this,event,2)"
is firing, how to do that?
When I am doing $('#body').contents().find('td[art_id="4949"]')[0].click();
i get undefined
and nothin happens.