var inBar = 5;
function clearbar()
{
if( --inBar > 0 )
{
document.body.focus();
}
if( document.activeElement.name != 'barcode' )
{
window.setTimeout('clearbar();',1000);
document.forms[0].barcode.focus();
return;
}
document.forms[0].reset();
document.forms[0].barcode.value='';
}
inBar and the first test are unnecessary in FF, but I had to add them for IE, I think because my page has an iframe in it.
The barcode field is the first field in the first form. After loading (which included an iframe with a pdf in it), the cursor was not in it, and typing didn't put characters into the field, but the if test (when it was the first test) still failed.
I verified from the address bar with alert(document.activeElement.name); that the active element was the one I wanted active. Apparently, the focus is being stolen by the iframe, and I don't know how to detect that, so I added the timeout, which gives the iframe one second to steal the focus back. If it takes longer than that, then I don't think my code will work, and I'm not sure what to do. If it steals it within one second, my code will steal it back again and wait another second. It'll do this up to 5 times, by which time I'm assuming the operator has been trying to focus something else, so I give up.