
Hi sir
How can we make a textarea auto grow ? What is the name of the plug-in used for auto grow text area.
Please mention code with your reply.

hello friend
The plug-in used for auto grow text area is "jquery.autogrow.js".
The complete Code is given below for a single Text area :
<html>
<head>
<title>Auto grow text Area</title>
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="jquery.autogrow.js"></script>
<script type="text/javascript">
$(document).ready (function() {
$('textarea.expandText').autogrow();
});
</script>
<style type="text/css">
textarea.expandText {
line-height: 10px;
}
</style>
</head>
<body>
No Min-Height and max-height 70Px
<textarea style="width: 300px; max-height: 70px;" class="expandText" name="myTextarea">
</textarea>
</body>
</html>