source: ether_iasi/trunk/web/resources/js/library/jquery-ui-1.9.2.custom/development-bundle/demos/dialog/default.html @ 786

Last change on this file since 786 was 786, checked in by cbipsl, 10 years ago

commit temp
bug libraries

File size: 1.3 KB
Line 
1<!doctype html>
2<html lang="en">
3<head>
4        <meta charset="utf-8">
5        <title>jQuery UI Dialog - Default functionality</title>
6        <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
7        <script src="../../jquery-1.8.3.js"></script>
8        <script src="../../external/jquery.bgiframe-2.1.2.js"></script>
9        <script src="../../ui/jquery.ui.core.js"></script>
10        <script src="../../ui/jquery.ui.widget.js"></script>
11        <script src="../../ui/jquery.ui.mouse.js"></script>
12        <script src="../../ui/jquery.ui.draggable.js"></script>
13        <script src="../../ui/jquery.ui.position.js"></script>
14        <script src="../../ui/jquery.ui.resizable.js"></script>
15        <script src="../../ui/jquery.ui.dialog.js"></script>
16        <link rel="stylesheet" href="../demos.css">
17        <script>
18        $(function() {
19                $( "#dialog" ).dialog();
20        });
21        </script>
22</head>
23<body>
24
25<div id="dialog" title="Basic dialog">
26        <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>
27</div>
28
29<div class="demo-description">
30<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>
31</div>
32</body>
33</html>
Note: See TracBrowser for help on using the repository browser.