Hi,

I'm using this code:

HTML Code:
var e=$get('myTextBox'); 
e.value = result; 
e.focus();
(yes, that's ajax mixed)

This works ok in normal cases.

But the focus on control works only once, the first time this code executes.

When this code is executed again, I can see that the textbox value has changes (which means it is working), but the focus is not set on the textbox.

Anyone.. any idea why?