I\'ve a textarea that uses TinyMCE as a WYSIWYG. Once that this textarea is loaded I want that, clicking a button \"Edit\" some html code that I bring with AJAX jquery is l
Using the jQuery version of tinyMCE with jQuery plugin you could use this
$.get("hello.html", function(content) { $('#input-corpo').html(content); });