Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>jQuery UI Resizable - Maximum / minimum size</title>
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
- <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
- <script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
- <link rel="stylesheet" href="/resources/demos/style.css" />
- <style>
- #resizable { width: 200px; height: 150px; padding: 5px; }
- #resizable h3 { text-align: center; margin: 0; }
- </style>
- <script>
- $(function() {
- $( "#resizable" ).resizable({
- maxHeight: 250,
- maxWidth: 200,
- minHeight: 10,
- minWidth: 200
- });
- $( "#resizable" ).draggable({ axis: "y" });
- });
- </script>
- </head>
- <body>
- <div id="resizable" class="ui-widget-content">
- <h3 class="ui-widget-header">Resize larger / smaller</h3>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment