Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Design
/
fileman
/
Fusion
/
jquery_UI
:
ui02.html
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<!DOCTYPE html> <html> <head> <title>jQuery UI Dialog : demo dialog</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href= "https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/dark-hive/jquery-ui.css"> <script src= "https://code.jquery.com/jquery-2.1.3.js"> </script> <script src= "https://code.jquery.com/ui/1.11.2/jquery-ui.js"> </script> <script> $(document).ready(function() { $("#demoDialog").dialog(); }); </script> </head> <body> <h1> Dialog Widget with Close button</h1> <div id="demoDialog" title="My Dialog Box"> <p>Welcome to GeeksforGeeks</p> </div> </body> </html>