7.3.2017 04:15
Use iframe like this!
Code:
<iframe id="unstyled-text" sandbox="allow-scripts allow-popups allow-same-origin" srcdoc="<?= htmlspecialchars('<head><base target="_blank"></head><body>' . $html . '</body>') ?>"></iframe>
<script>
$(function(){
// hack for IE and browsers without srcdoc support
var $u = $('#unstyled-text');
var $body = $u.contents().find('body');
if ($body.html() == '')
$body.parent().html($u.attr('srcdoc'));
});
</script>
Coffee phreak!