imported the whole jquery-ui package, refreshed with 1.10.2
[myslice.git] / third-party / jquery-ui-1.10.2 / demos / resizable / constrain-area.html
1 <!doctype html>
2 <html lang="en">
3 <head>
4         <meta charset="utf-8">
5         <title>jQuery UI Resizable - Constrain resize area</title>
6         <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
7         <script src="../../jquery-1.9.1.js"></script>
8         <script src="../../ui/jquery.ui.core.js"></script>
9         <script src="../../ui/jquery.ui.widget.js"></script>
10         <script src="../../ui/jquery.ui.mouse.js"></script>
11         <script src="../../ui/jquery.ui.resizable.js"></script>
12         <link rel="stylesheet" href="../demos.css">
13         <style>
14         #container { width: 300px; height: 300px; }
15         #container h3 { text-align: center; margin: 0; margin-bottom: 10px; }
16         #resizable { background-position: top left; width: 150px; height: 150px; }
17         #resizable, #container { padding: 0.5em; }
18         </style>
19         <script>
20         $(function() {
21                 $( "#resizable" ).resizable({
22                         containment: "#container"
23                 });
24         });
25         </script>
26 </head>
27 <body>
28
29 <div id="container" class="ui-widget-content">
30         <h3 class="ui-widget-header">Containment</h3>
31         <div id="resizable" class="ui-state-active">
32                 <h3 class="ui-widget-header">Resizable</h3>
33         </div>
34 </div>
35
36 <div class="demo-description">
37 <p>Define the boundaries of the resizable area. Use the <code>containment</code> option to specify a parent DOM element or a jQuery selector, like 'document.'</p>
38 </div>
39 </body>
40 </html>