HTML
<!doctype html>lang="en"charset="utf-8"name="viewport" content="width=device-width, initial-scale=1"jQuery UI Dialog popup - Default functionality with button clickrel="stylesheet" href="//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: this is the example jquery ui popup modelhow to set Title in jquery ui popup modelhow to set hight and width in jquery ui popup modelhow to set position jquery ui popup modelhow to set custom css in jquery ui popup modelid="dialogBtn"Click button to open popupid="dialogBox" title="Basic dialog" style="display:none"
CSS
JavaScript
$(function() {$("#dialogBtn").click(function(){$("#dialogBox").dialog({width: 330,height: "auto",autoOpen: true,dialogClass: "custom-ui-widget-header-warning",modal: true,responsive: true,position: {my: "center",at: "center",},}).dialog("open").prev().css("background", "#54ca68").css("color", "#fff");});});