blob: 4fb33963370f170021016dd397f4ce039919c37b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Resizable - Also Resize Demo</title>
<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>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<style type="text/css">
#resizable { background-position: top left; }
#resizable, #also { width: 150px; height: 150px; padding: 0.5em; }
#also { margin-top: 1em; }
</style>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({
alsoResize: '#also'
});
$("#also").resizable();
});
</script>
</head>
<body>
<div id="resizable" class="ui-widget-header">
<p>Resize me</p>
</div>
<div id="also" class="ui-widget-content">
<p>I will resize with the other div. I can also be resized independently.</p>
</div>
</body>
</html>
|