
как етосделать? нарыл такой скрипт, но чет похоже не то
- Код: Выделить всё
<SCRIPT LANGUAGE="JavaScript">
function increaseTextarea(area){
if (document.getElementById(area).style.height == '') {
document.getElementById(area).style.height = '300px';
}
else{
var pattern = new RegExp(\"\\\\d+\",'ig');
var currHeight = document.getElementById(area).style.height.match(pattern);
var newHeight = +currHeight + 100;
document.getElementById(area).style.height = newHeight + 'px';
}
}
</SCRIPT>
<form method=post name='' action=''>
<textarea id="short" name="short" style='height: 100px; width: 250px;'></textarea>
</form>
<a href=# onclick="increaseTextarea('short'); return false;">увеличить поле</a>