Hi,
when a jQuery UI dialog opens it seems to select one of the buttons and highlights it or sets focus to it etc... How can I stop this behaviour so that none of the buttons are highlighted when the dialog opens?
Thanks!
EDIT
I tried the following in the dialog options which didn't remove focus from the buttons
...
open:function(event, ui) { $("myunimportantdiv").focus(); },
...
NOTE
as a temporary workaround I modified the css for ui-state-focus but this isn't ideal...