2008-12-31 01:20:50 +00:00
|
|
|
<!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>
|
2008-12-31 06:29:31 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
2008-12-31 01:20:50 +00:00
|
|
|
<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() {
|
2008-12-29 03:07:22 +00:00
|
|
|
$("#resizable").resizable({
|
|
|
|
alsoResize: '#also'
|
2008-12-31 01:20:50 +00:00
|
|
|
});
|
|
|
|
$("#also").resizable();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="resizable" class="ui-widget-header">
|
|
|
|
<p>Resize me</p>
|
|
|
|
</div>
|
2008-12-29 03:07:22 +00:00
|
|
|
|
2008-12-30 04:54:59 +00:00
|
|
|
<div id="also" class="ui-widget-content">
|
|
|
|
<p>I will resize with the other div. I can also be resized independently.</p>
|
2008-12-29 03:07:22 +00:00
|
|
|
</div>
|
2008-12-31 01:20:50 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|