Forum Moderators: open
The code that does not work:
document.forms.frmwhatever.txtfield.focus()
But, if I wrap it in a setTimeout it seems to work.
setTimeout("document.forms.frmwhatever.txtfield.focus()", 50);
The setTimeout method appears to work in both browsers, but it seems like the hard way to do things, and I'm always looking for the easy way :-)
Thanks,
- Ryan