2012-09-10 15:33:46 +00:00
<!doctype html>
2008-12-30 04:16:51 +00:00
< html lang = "en" >
< head >
2010-09-10 13:01:54 +00:00
< meta charset = "utf-8" >
2009-01-20 20:09:55 +00:00
< title > jQuery UI Dialog - Default functionality< / title >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2014-06-10 11:55:45 +00:00
< script src = "../../external/jquery/jquery.js" > < / script >
2013-12-02 18:36:12 +00:00
< script src = "../../ui/core.js" > < / script >
< script src = "../../ui/widget.js" > < / script >
< script src = "../../ui/mouse.js" > < / script >
< script src = "../../ui/draggable.js" > < / script >
< script src = "../../ui/position.js" > < / script >
< script src = "../../ui/resizable.js" > < / script >
< script src = "../../ui/button.js" > < / script >
< script src = "../../ui/dialog.js" > < / script >
2010-09-10 13:01:54 +00:00
< link rel = "stylesheet" href = "../demos.css" >
< script >
2008-12-30 04:16:51 +00:00
$(function() {
2010-09-10 13:01:54 +00:00
$( "#dialog" ).dialog();
2008-12-30 04:16:51 +00:00
});
< / script >
< / head >
< body >
2008-12-31 05:01:58 +00:00
< div id = "dialog" title = "Basic dialog" >
< p > This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.< / p >
< / div >
2010-09-10 13:01:54 +00:00
< div class = "demo-description" >
< p > The basic dialog window is an overlay positioned within the viewport and is protected from page content (like select elements) shining through with an iframe. It has a title bar and a content area, and can be moved, resized and closed with the 'x' icon by default.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2008-12-30 04:16:51 +00:00
< / body >
< / html >