I have the following jQuery code running:
$('a.testlink').click(function() {
var $essay = $(".tinyeditor iframe").contents().find("body").clone();
$essay.appendTo("div.test");
});
As you can see, it is finding the contents of "body" inside an iframe (same source); and appending it to a div.
The above code works fine. But if I change the appendTo from a div to a textarea, it doesn't work.
What am I doing wrong?
.appendTo()
appends the content as an html. it will not work for textarea. you need to set the value for textarea.For appending inside textarea, you need to set the textarea value to its original contents + new content.
Update: What if I want all the contents to be replaced with the new one
You need to simply set the value using
.val()
along with new content: