Skip to main content

Search and Top Navigation

Ticket #3882: default.html


File default.html, 1.2 KB (added by braddunbar, January 30, 2009 04:51PM UTC)

Demo with "postion: relative;" on ".demo" element

<!doctype html>
<html lang="en">
<head>
	<title>jQuery UI Resizable - Default functionality</title>
	<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
	<script type="text/javascript" src="../../jquery-1.3.1.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">
	.demo{
		width: 500px;
		height: 500px;
		margin: 40px;
		border: solid 1px #aaa;
		background: solid 1px #eee;
		position: relative;
	}
	#resizable { width: 150px; height: 150px; padding: 0.5em; }
	#resizable h3 { text-align: center; margin: 0; }
	</style>
	<script type="text/javascript">
	$(function() {
		$("#resizable").resizable({ containment: '.demo' });
	});
	</script>
</head>
<body>
<div class="demo">
	
<div id="resizable" class="ui-widget-content">
	<h3 class="ui-widget-header">Resizable</h3>
</div>

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

<div class="demo-description">

<p>Enable any DOM element to be resizable.  With the cursor grab the right or bottom border and drag to the desired width or height.</p>

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

Download in other formats:

Original Format