Hello,
is there a function with which I can find out if a form element has the
focus?
Something like:
function ReactIfFocus()
{
for(var i=0; i<10; i++)
if( HasFocus(document.forms[0].elements[i])
makeSomething();
}
I need the function to move the focus to the next field.
Thanks
Christoph