Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
  <p>Enter some HTML in the text box:</p>
  <textarea id="txt"></textarea>
  <p><a href="nothing.html" id="link" download="code.html">Download HTML</a></p>
</body>
</html>
 
function downloadCode(link, code) {
  link.href = 'data:text/html;charset=utf-8,' + code;
}
document.getElementById('link').addEventListener('click', function (e) {
  downloadCode(this, txt.value);
}, false);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers