Problem for opening jQuery dialog box in ie8
        Posted  
        
            by user291247
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user291247
        
        
        
        Published on 2010-03-11T07:12:51Z
        Indexed on 
            2010/03/24
            4:53 UTC
        
        
        Read the original article
        Hit count: 286
        
jquery-ui-dialog
|jQuery
Hello,
I am using jQuery dialog box and having problem to open it in ie8 in other browsers it will opens but having problem in ie8 only.
Also I have one more problem some times ajax request is not working in my dialog box on any browser.
code.
// Dialog           
            $('#login_div').dialog({
                autoOpen: false,
                width: 600,
                buttons: {
                    "Cancel": function() { 
                        $(this).dialog("close"); 
                    } 
                }
            });
            // Dialog Link - login_div
            $('#dialog_link').click(function(){
                   $('#login_div').dialog({ autoOpen: false });
                    //$('#login_div').show();
                $('#login_div').dialog('open');
                return false;
            });
© Stack Overflow or respective owner