IE8 open dialog focus problem
I want to focus on $("#test") after dialog('open'), example HTML as:
- <div id="dialog">
- <input type='text' id=''test"/>
- </div>
$("#test") can't get focus on my IE8.
I have tried firefox, opera, chrome, and all of them work well as expected.
But only on IE8, I need to add a extra hidden input
to focus the first input...
- <div id="dialog">
- <input type='text' id=''test"/>
- <input type='hidden'/>
- </div>
Both 1.7.2 and 1.8rc1 have the same problem