jQuery UI Dialog resizable Option Last Updated : 13 Jan, 2021 Comments Improve Suggest changes Like Article Like Report 'resizable option' if set to false the dialog box will not be resizable. By default, value is true. Syntax: $( ".selector" ).dialog({ resizable: false }); Approach: First, add jQuery UI scripts needed for your project. <link href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel = "stylesheet"> <script src = "https://code.jquery.com/jquery-1.10.2.js"></script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> Example 1: HTML <!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <link rel = "stylesheet" href= "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"> <script src = "https://code.jquery.com/jquery-1.10.2.js"> </script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"> </script> <script> $(function() { $( "#gfg" ).dialog({ autoOpen: false, resizable : false }); $( "#geeks" ).click(function() { $( "#gfg" ).dialog( "open" ); }); }); </script> </head> <body> <div id = "gfg" title = "GeeksforGeeks"> Jquery UI| resizable dialog option </div> <button id = "geeks"> Open Dialog </button> </body> </html> Output: Example 2: HTML <!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <link rel = "stylesheet" href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"> <script src = "https://code.jquery.com/jquery-1.10.2.js"> </script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"> </script> <script> $(function() { $( "#gfg" ).dialog({ autoOpen: false, resizable : true }); $( "#geeks" ).click(function() { $( "#gfg" ).dialog( "open" ); }); }); </script> </head> <body> <div id = "gfg" title= "GeeksforGeeks"> Jquery UI| resizable dialog option </div> <button id = "geeks">Open Dialog</button> </body> </html> Output: Comment More infoAdvertise with us Next Article jQuery UI Dialog resizable Option T taran910 Follow Improve Article Tags : Web Technologies HTML JQuery jQuery-UI Similar Reads jQuery UI Resizable disabled Option jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI Resizable disabled Option is used to disable the resizable property if set to true. Syntax: $(".selector").resizable({ 1 min read jQuery UI Resizable distance Option jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI Resizable distance option is used to disable the resizable property if it set to true. Syntax: $(".selector").resizable 1 min read jQuery UI Resizable cancel Option jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI Resizable cancel option is used to prevent resizing from starting on specified elements. Syntax: $(".selector").resizab 1 min read jQuery UI Resizable handles Option jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI Resizable handles option is used to handle the edges that are used for resizing. It supports two types of values that a 1 min read jQuery UI Dialog title Option The article explains the title option which is used to set the title in the dialog box. By default, its value is null. Syntax: $( ".selector" ).dialog({ title : "title" }); Approach: First, add jQuery UI scripts needed for your project. <link href = "https://code.jquery.com/ui/1.10.4/themes/ui-li 1 min read Like