Skip to content

Instantly share code, notes, and snippets.

@my-slab
Created June 4, 2018 06:05
Show Gist options
  • Save my-slab/58463779ca8bbb183b0c734fa8d709bc to your computer and use it in GitHub Desktop.
Save my-slab/58463779ca8bbb183b0c734fa8d709bc to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<body>
<iframe id="theIframe" width="400" height="600" sandbox="allow-popups allow-scripts allow-forms allow-same-origin"></iframe>
<script>
var html = '<html><h1>hello world!</h1></html>'
var blob = new Blob([html], {type: 'text/html'})
var url = URL.createObjectURL(blob)
theIframe.src = url
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment