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&ouml;her</p>');
});

$('resize').click(function() {
        var txt = $('#txtarea_'+this.id.substr(8));
        txt.heigth(txt.height()+60).slideDown('slow');
});

Christof

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to