Does anyone know if there was a recent update to Vista that makes javascript functions no longer return values the way they should? For some reason when I say onkeydown="return blah()" inside of blah()
return false;
no longer works, and I have to say:
try { window.event.returnValue = false; } catch(err) {}
I never had to do this before, and the normal way continues to work in IE6 and FF.
Start Free Trial