Whenever I type something in the following Insert Hyperlink text input, all the words are going to textarea behind it. OK and Cancel buttons are working fine bu
Another way to stop blocking focus from jquery dialog
$.widget("ui.dialog", $.ui.dialog, {
_allowInteraction: function (event) {
return !!$(event.target).closest(".input-container").length || this._super(event);
}
});
Where .input-container is container which contains controls that should receive focus.