I have a onclick event which working well in my html tag
Code:
<td id="row" onClick="showAlert(); return"></td>
When onclick, an alert message will be popup.
So, is it possible that we could invoke this onClick event without explicitly have to click on the <td> object? For instance, when the body onLoad, write something so that the <td> object will invoke the onclick event itself?