RPrinceton
Programmer
Hi Everyone,
Below is a javascript code snippet I use to position the insertion pointer on a field upon detecting an entry error. It works in IE but not Firefox. What obvious thing am I missing? I have not tried it with Opera or Netscape.
Please advise. Thx in advance.
Regards,
RPrinceton
code snippet:
function pos_csr(tabFld)
{
if (!tabFld)
{
}
else
{
document.getElementById(tabFld).focus();
}
}
Below is a javascript code snippet I use to position the insertion pointer on a field upon detecting an entry error. It works in IE but not Firefox. What obvious thing am I missing? I have not tried it with Opera or Netscape.
Please advise. Thx in advance.
Regards,
RPrinceton
code snippet:
function pos_csr(tabFld)
{
if (!tabFld)
{
}
else
{
document.getElementById(tabFld).focus();
}
}