diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-30 04:54:59 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-30 04:54:59 +0000 |
commit | 01de749603ed680ae4f0539308fe65832aa497ab (patch) | |
tree | babdaed11c154ced81fcf587018a7bb95f1f1c5b /demos/resizable | |
parent | 13a68e0006346346ec8fb1816d13a8021648ba64 (diff) | |
download | jquery-ui-01de749603ed680ae4f0539308fe65832aa497ab.tar.gz jquery-ui-01de749603ed680ae4f0539308fe65832aa497ab.zip |
demos/resizable/alsoresize.html - switched to framework classes
Diffstat (limited to 'demos/resizable')
-rw-r--r-- | demos/resizable/alsoresize.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/demos/resizable/alsoresize.html b/demos/resizable/alsoresize.html index c25dda29f..431ffeaca 100644 --- a/demos/resizable/alsoresize.html +++ b/demos/resizable/alsoresize.html @@ -7,22 +7,27 @@ <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, #also { width: 150px; height: 150px; padding: 0.5em; background-position: top left; }
+ #also { margin-top: 1em; }
+ </style>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({ alsoResize: '#also' });
+ $("#also").resizable();
});
</script>
</head>
<body>
-<div id="resizable" style="width: 200px; height: 200px; background-color: #f00;">
+<div id="resizable" class="ui-widget-header">
<p>Resize me</p>
</div>
-<div id="also" style="width: 100px; height: 100px; background-color: #0f0; position: absolute, top: 300px;"> - <p>I will resize with the other div!</p> +<div id="also" class="ui-widget-content"> + <p>I will resize with the other div. I can also be resized independently.</p> </div> </body>
|