I'd try

$("textarea").val($("textarea").val() + txt);

David

On Dec 3, 4:27 pm, cfdvlpr <[EMAIL PROTECTED]> wrote:
> append() doesn't seem to work.   I also tried this function that was
> mentioned in another thread here by John and that doesn't seem to work
> for me either.  Anyone else got this to work?  What might I be
> missing?
>
> $.fn.appendVal = function(txt) {
>     return this.each(function(){
>         this.value += txt;
>     });
>
>
>
> };- Hide quoted text -
>
> - Show quoted text -

Reply via email to