Skip to content

Instantly share code, notes, and snippets.

@operator-DD3
Created August 11, 2015 03:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save operator-DD3/c4f70efbe40eae29c26d to your computer and use it in GitHub Desktop.
Save operator-DD3/c4f70efbe40eae29c26d to your computer and use it in GitHub Desktop.
A simple DATA:URI editor
<html> <head> <style> h1 { background-color: black; color: white; } </style> <script> function myfunc() { document.getElementById("myP").innerHTML = "<A HREF=data:text/html;charset=utf-8," + encodeURI(document.getElementById("text1").value) + ">output</a>" } </script> </head> <h1><center>Data:URI Editor</center></h1> <textarea id="text1" cols="80" rows="12"></textarea> <br> <button type="button" onclick="myfunc()">Create URI</button> <p id="myP"></p> </html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment