how to make jquery ui dialog not resizable

Posted by Omu on Stack Overflow See other posts from Stack Overflow or by Omu
Published on 2010-02-08T10:14:59Z Indexed on 2010/03/23 6:03 UTC
Read the original article Hit count: 335

anybody knows how to make the jquery dialog not resizable ? I call it like this atm :

 var elem = $("#mydiv");
        elem.dialog({       
        modal: true,
        title: 'title',
        buttons: {
            Ok: function() {
                $(this).dialog('close');                                
            } //end function for Ok button
        }//end buttons
            });  // end dialog  
            elem.dialog('open');

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery