aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable/alsoresize.html
blob: d98686f868bfbc429ef1d287c83ac873d5096c3a (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
36
37
38
39
40
41
42
43
44
45
<!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 class="demo">
	
<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>

</div><!-- End demo -->

<div class="demo-description">

<p>
<!-- Add description here -->
</p>

</div><!-- End demo-description -->
</body>
</html>