I'm trying to send this command:
document.body.innerHTML = document.body.textContent;
like in this script:
var iframeBody = $(window.my_frame.document.getElementsByTagName("body")[0]);
iframeBody.append($("<h1/>").html("Hello world!"));
in this jsfiddle
HTML:
<iframe id='my_frame' src="http://www.sec.gov/Archives/edgar/data/1168960/0001052918-13-000257.txt"></iframe>
nevertheless it does not executes; anyone knows why?
cheers