Skip to content

Instantly share code, notes, and snippets.

@RomanManz
Created August 15, 2019 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RomanManz/6dca1708341ae6a14cdb3d7c33c2014f to your computer and use it in GitHub Desktop.
Save RomanManz/6dca1708341ae6a14cdb3d7c33c2014f to your computer and use it in GitHub Desktop.
demo javascript code to open a new text window/tab
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function showdata() {
window.open('data:text/plain;charset=US-ASCII,Hello, Window!', '_blank');
}
</script>
</head>
<body>
<a href="javascript:showdata()">click me</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment