Blured TextField?

admin

Administrator
Staff member
Hi,
How can I make the keyboard TAB key, able to make the pointer jumping through text fields,
Where one of them is Blured on Focus, i.e ...onFocus="this.blur()"....
as the following example illustrates:

<form>
<input type="text">
<input type="text" onFocus="this.blur()">
<input type="text">
<input type="text">
</form>

When you test this code you will notice that the tab keyboard key cannot move the pointer
from the second text field to the third.
So I need to solve this problem. Please Help me :)
 
Back
Top