jquery dialog runtime error on IE (0x800a01b6)

-1

My javascript method that opens my jquery dialog when i save something in my app is not working anymore.

MessageBox: function (titulo, mensagem) {
        $('#message-box')
                .attr('title', titulo)
                .html(mensagem)
                .dialog({
                    modal: true,
                    buttons: {
                        "Ok": function () {
                            $(this).dialog("close");
                        }
                    }
                });
    },

now I'm getting this error only on IE:

“0x800a01b6 - Microsoft JScript runtime error: Object doesn't support this property or method: 'dialog'”

In other browsers (firefox and Chrome) works perfect.

javascript
jquery
internet-explorer
firefox
dialog
asked on Stack Overflow Mar 21, 2014 by FábioMuniz • edited Dec 15, 2017 by Cœur

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0