Hi, > I can not the Textarea give any ID or CLASS, to establish understanding ;)
Yes you can:
$('textarea').each(function(i) {
$(this).id('txtarea_'+i).
after('<p class="resize" id="resizer_'+i+'">höher</p>');
});
$('resize').click(function() {
var txt = $('#txtarea_'+this.id.substr(8));
txt.heigth(txt.height()+60).slideDown('slow');
});
Christof
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
