function sethtml(a,b)
{
var x = document.getElementById("canvas_html").contentDocument; x.write(b);
}
This works but I want to replace the content instead of writing to it.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This will replace entirely the contents of
xfor ordinary DOM elements. In the case of an iframe, see this question for details on how to clear an iframe. You could then simply use thewritemethod to add your new content.