mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>jQuery UI Resizable - Also Resize 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, #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" 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>
|