Hi guys. as u see from the code below; i have some problems 1-i 'd like to assign a function to the anchor via javascript. I read that void( 0 ) would do that. it works, but then onClick-event handler doesnot. It cannot submit the form. 2-the gif image cannot be rendered. Although the relative path is absolutely true. 3-is window.document.forms-i notation not correct, bcos IE gives object null error. regards....
td a href="javascript:void(0);" on-Click = "check_and_submit_form(t his);" &st; img src="../images/wwr3DGrau_MA2_oben.gif" alt="being loaded.Sei Geduldig !!!" align="left" height="95" width="112" a td
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15003
posted
0
<td> < a href="javascript:void(0);"> onClick = "check_and_submit_form(this);" <img src="../images/wwr3DGrau_MA2_oben.gif" alt="being loaded.Sei Geduldig !!!" align="left" height="95" width="112"> </a> </td> Try this way <td> < a href="javascript:check_and_submit_form(this);"><img src="../images/wwr3DGrau_MA2_oben.gif" alt="being loaded.Sei Geduldig !!!" align="left" height="95" width="112"> </a> </td> Eric