HTML
<!doctype html>lang="en"charset="utf-8"name="viewport" content="width=device-width, initial-scale=1"jQuery UI Dialog - Default functionalityrel="stylesheet" href="https://code.jquery.com/ui/1.13.1/themes/base/jquery-ui.css"src="https://code.jquery.com/jquery-3.6.0.js"src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"Note:Dialog: Auto height does not respect the maxHeight optionid="openBox"Open Popupid="dialog" title="Basic dialog" style="display:none"This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.
CSS
JavaScript
$( function() {$("#openBox").on("click",function(){$("#dialog").dialog({autoOpen: false,width:1200,maxHeight:710,height:710,autoOpen: true,dialogClass: "custom-ui-widget-header-warning",modal: true,responsive: true,position: {my: "center",at: "center",},});})} );