Generally I am against the use of iframes, but it solved a particular problem of mine.
The thing is that I have a tinyMCE-editor at a webpage. After the user have ma
Use the new Data URI Scheme. Example:
var content = "";document.getElementById("my_iframe_id").src = "data:text/html;charset=UTF-8," + content;