Hi,
I'm developing an application for mac and Windows. I have a peculiar problem with MAC OS 9.2 and IE 5, the tab sequence does not go to button and links and Combo!!!!!
Sample code which did not work is given below.
--------------------------------------------------------
<HTML>
<BODY BGCOLOR=#FFFFFF leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="document.LoginForm.tf_username.focus()">
<FORM name="LoginForm" method="post" action="" onSubmit="return js_validateForm()">
<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center">
<tr>
<td colspan="2" class="texts" height="30" align="right" valign="middle"> Username: </td>
<td width="50%" height="30" align="left">
<input type="text" name="tf_username" class="tablecontents" size="12" maxlength="30" tabindex="1">
</td>
</tr>
<tr>
<td colspan="2" class="texts" align="right"> Password: </td>
<td width="50%" align="left">
<input type="password" name="tf_password" class="tablecontents" size="12" maxlength="10" tabindex="2">
</td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="50%" align="left">
<input type="submit" name="login" value="Login" tabindex="3" >
</td>
</tr>
<tr>
<td colspan="2" height="34">
<div align="right"> </div>
</td>
<td width="50%" height="34"><a href="JavaScript:js_forgotpassword()" tabindex="4" >Forgot
Password?</a></td>
</tr>
</table>
</FORM>
</BODY>
</HTML>
--------------------------------------------------------
I want to know what is really wrong.
I'm developing an application for mac and Windows. I have a peculiar problem with MAC OS 9.2 and IE 5, the tab sequence does not go to button and links and Combo!!!!!
Sample code which did not work is given below.
--------------------------------------------------------
<HTML>
<BODY BGCOLOR=#FFFFFF leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="document.LoginForm.tf_username.focus()">
<FORM name="LoginForm" method="post" action="" onSubmit="return js_validateForm()">
<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center">
<tr>
<td colspan="2" class="texts" height="30" align="right" valign="middle"> Username: </td>
<td width="50%" height="30" align="left">
<input type="text" name="tf_username" class="tablecontents" size="12" maxlength="30" tabindex="1">
</td>
</tr>
<tr>
<td colspan="2" class="texts" align="right"> Password: </td>
<td width="50%" align="left">
<input type="password" name="tf_password" class="tablecontents" size="12" maxlength="10" tabindex="2">
</td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="50%" align="left">
<input type="submit" name="login" value="Login" tabindex="3" >
</td>
</tr>
<tr>
<td colspan="2" height="34">
<div align="right"> </div>
</td>
<td width="50%" height="34"><a href="JavaScript:js_forgotpassword()" tabindex="4" >Forgot
Password?</a></td>
</tr>
</table>
</FORM>
</BODY>
</HTML>
--------------------------------------------------------
I want to know what is really wrong.