vote up 0 vote down star

If I use

setTimeout(function{$('#myElement').focus()}, 10)`

during the loading of a jquery-ui dialog containing tabs, the rendering of the tabs breaks! Specifically, their background images fail to appear which makes them look like garbage. This ONLY happens when I set a timeout on document ready to focus the first text input in the popup.

This behavior is bizarre. Thoughts?

Note: This only happens in firefox and opera.

flag

ah you changed the q!! – redsquare Aug 26 at 19:29
You responded with a stock response that failed to address the problem. I was shorthanding the notation, but I failed to mention that. – Stefan Kendall Aug 26 at 19:33
1  
Stock response......well if you gave a proper description and maybe a demo url replicating the issue it might lead to a better solution... – redsquare Aug 26 at 19:36
you do know the dialog auto attempts to set focus to the first visible input – redsquare Aug 26 at 19:38
see dev.jqueryui.com/ticket/4731 – redsquare Aug 26 at 19:38
show 1 more comment

3 Answers

vote up 1 vote down check

This smells like a classic concurrency problem to me. You're altering the code while jQuery's working on it, and that's probably breaking some assumption in the code that the state of the DOM will stay stable.

If you want to focus a textfield after the dialog is loaded, the proper way to do it is to put your focus() in a callback method.

Also, do you really mean to wait for 10 milliseconds and then focus()?

link|flag
The wait is a an arbitrary fix for ie6/7. Calling focus directly does not work. – Stefan Kendall Aug 26 at 19:45
This may be the solution. Doing prelim testing. – Stefan Kendall Aug 26 at 20:05
Solid insight. I added a callback and whammo. WORKS! Thanks! – Stefan Kendall Aug 26 at 20:45
vote up 0 vote down

Do you get any error?

Are you sure the element is in the dom and visible thus focusable when the function is invoked.

Does increasing the timeout value fix it?

link|flag
No. Yes. I do this on document.ready No. – Stefan Kendall Aug 26 at 19:32
vote up 0 vote down

If you're copying your code directly, it could just be that you forgot the () after focus.

setTimeout($('#myElement').focus(), 10);
link|flag
that would just cause the focus to invoke instantly rather than in 10 milliseconds – redsquare Aug 26 at 19:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.