2008-12-31 01:20:50 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>jQuery UI Resizable - Max Height / Width Demo</title>
|
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
|
|
<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
|
|
|
|
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
|
|
|
|
<style type="text/css">
|
|
|
|
#resizable { width: 150px; height: 150px; padding: 0.5em; }
|
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2008-12-29 03:07:22 +00:00
|
|
|
$("#resizable").resizable({
|
2008-12-30 06:14:38 +00:00
|
|
|
maxHeight: 250,
|
|
|
|
maxWidth: 350
|
2008-12-31 01:20:50 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2008-12-29 03:07:22 +00:00
|
|
|
|
2008-12-31 01:20:50 +00:00
|
|
|
<div id="resizable" class="ui-widget-content">
|
|
|
|
<p>Resize me</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|