Skip to content

Commit

Permalink
added textarea-demo für resizable
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Mar 11, 2009
1 parent dd601d5 commit c0ea4c1
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions demos/resizable/index.html
Expand Up @@ -19,6 +19,7 @@ <h4>Examples</h4>
<li><a href="synchronous-resize.html">Synchronous resize</a></li>
<li><a href="animate.html">Animate</a></li>
<li><a href="helper.html">Resize Helper</a></li>
<li><a href="textarea.html">Textarea</a></li>
</ul>
</div>

Expand Down
36 changes: 36 additions & 0 deletions demos/resizable/textarea.html
@@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Resizable - Textarea</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.3.2.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">
.ui-resizable-se {
bottom: 17px;
}
</style>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({
handles: "se"
});
});
</script>
</head>
<body>
<div class="demo">

<textarea id="resizable" rows="5" cols="20"></textarea>

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

<div class="demo-description">

<p>Display only an outline of the element while resizing by setting the <code>helper</code> option to a CSS class.</p>

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

0 comments on commit c0ea4c1

Please sign in to comment.