in reply to IEAutomation Cell Click

that's a frontend problem and thus not a matter of perl, but of javascript and html.
<script type="text/javascript"> function haveBeenClicked() { alert("Here we are!"); } </script> <table><tbody> <tr><td onclick="haveBeenClicked()">click me</td> </tr> </tbody></table>
notice that the internet exploder insists on the <tbody> element (in case you want to modify the table structure via javascript).
--------------------------------
masses are the opiate for religion.

Replies are listed 'Best First'.
Re^2: IEAutomation Cell Click
by tnhurst57 (Initiate) on Oct 25, 2007 at 13:54 UTC
    Here is a cutout of the HTML - is there any way around it?
    <td Class=TabCell><a target=_new Class=NormalLink OnMouseOver=LinkOve +r() OnMouseOut=LinkOut() OnClick="MyDNetErrorTextWindow('DuvelHealthR +eport3.0', '14', '2823754', 'APM00043404730')"'> Health Report</a></t +d>

    20071025 Janitored by Corion: Added code tags, as per Writeup Formatting Tips