(JavaScript) Functions happening to fast? **Resolved**
I have onBlur and onFocus events on some input boxes. Both of them open a window in a hidden frame to do some processing. It seems that the functions are going to fast and not opening the window. Here is the desired psudo code:
1) user clicks on field 1 onFocus fires and opens a window in hidden frame.
2) user hits tab and moves into field 2. Field 1's onBlur fires and opens a window & does what it has to do. Then Field 2's on focus fires (and we are back at step 1)
What I think is happening is that it is working fine but after the onBlur fires the next onFocus happens so quick that the page that opened in the onBlur is quickly replaced by the page opened by the onFocus. So fast that no processing takes place.
Any ideas?
Michael