When I get the login page, I notice a javascript error displayed as an icon in the status bar. When I double-click the error icon, this is what I see:
When I view the source, line 57 is part of an if statement that looks like this:line: 57
char: 2
Error: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus
Code: 0
Code: Select all
if (document.forms[0])
document.forms[0].elements[0].focus();
It doesn't seem to cause any harm. I'm just curious as to why this is happening. (I'm not much of a javascript guru).