When a jQuery UI dialog opens, it selects 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 highl
This is what I usually do, works all the time:
open: function() { $('.ui-dialog button').removeClass('ui-state-focus'); },