Skip to content

Instantly share code, notes, and snippets.

@nolanlawson
Created August 25, 2017 17:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nolanlawson/ebc92cadb494aefa11e421d42667181a to your computer and use it in GitHub Desktop.
Save nolanlawson/ebc92cadb494aefa11e421d42667181a to your computer and use it in GitHub Desktop.
iframe blob uri src
<!doctype html>
<html lang="en">
<body>
<iframe id="theIframe" width="400" height="600" sandbox="true"></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