source: main/trunk/greenstone3/web/interfaces/oran/js/jquery-ui-1.8rc1/demos/resizable/max-min.html@ 24245

Last change on this file since 24245 was 24245, checked in by sjb48, 13 years ago

Oran code for supporting format changes to document.

  • Property svn:executable set to *
File size: 1.4 KB
Line 
1<!doctype html>
2<html lang="en">
3<head>
4 <title>jQuery UI Resizable - Maximum / minimum size</title>
5 <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
6 <script type="text/javascript" src="../../jquery-1.4.1.js"></script>
7 <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
8 <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
9 <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
10 <script type="text/javascript" src="../../ui/jquery.ui.resizable.js"></script>
11 <link type="text/css" href="../demos.css" rel="stylesheet" />
12 <style type="text/css">
13 #resizable { width: 200px; height: 150px; padding: 5px; }
14 #resizable h3 { text-align: center; margin: 0; }
15 </style>
16 <script type="text/javascript">
17 $(function() {
18 $("#resizable").resizable({
19 maxHeight: 250,
20 maxWidth: 350,
21 minHeight: 150,
22 minWidth: 200
23 });
24 });
25 </script>
26</head>
27<body>
28<div class="demo">
29
30<div id="resizable" class="ui-widget-content">
31 <h3 class="ui-widget-header">Resize larger / smaller</h3>
32</div>
33
34</div><!-- End demo -->
35
36<div class="demo-description">
37
38<p>Limit the resizable element to a maximum or minimum height or width using the <code>maxHeight</code>, <code>maxWidth</code>, <code>minHeight</code>, and <code>minWidth</code> options.</p>
39
40</div><!-- End demo-description -->
41</body>
42</html>
Note: See TracBrowser for help on using the repository browser.