aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable/containment.html
blob: 15abea55f3e9e7b6712075d31d7e852de6847235 (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
<!doctype html>
<html lang="en">
<head>
	<title>jQuery UI Resizable - Containment 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 { background-position: top left; width: 150px; height: 150px; }
	#resizable, #container { padding: 0.5em; }
	#container { width: 300px; height: 300px; }
	</style>
	<script type="text/javascript">
	$(function() {
		$("#resizable").resizable({
			containment: '#container'
		});
	});
	</script>
</head>
<body>

<div id="container" class="ui-widget-content">
	<p>Container</p>
	<div id="resizable" class="ui-widget-header">
		<p>Resize me</p>
	</div>
</div>

</body>
</html>