[jQuery] how to append() to a textarea
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;
});
};