acglag (AT) gmail (DOT) com wrote:
Quote:
I am not having that problem but, to be safe, you could modify your
function to set focus to the object being passed in:
function doSomething(objSender) {
objSender.value = 'abc';
objSender.focus();
}
Hope that helps... |
I have tried that out, it doesn't seem to work. In fact, the object
*has* the focus, only because the object value is changed afterwards,
you don't see the cursor anymore. (Just try to type some additional text
into the second input field after switching with tab).
(Tested with IE6)
--Jerome