Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
  <script src="http://rawgithub.com/desmosinc/scrubber/master/scrubber.js"></script>
  <link rel="stylesheet" href="http://rawgithub.com/desmosinc/scrubber/master/scrubber.css" />
  <style>
    body { margin: 40px; }
  </style>
</head>
<body>
  
</body>
</html>
 
var scrubber = new ScrubberView();
document.body.appendChild(scrubber.elt);
var display = document.createElement('p');
document.body.appendChild(display);
display.innerHTML = scrubber.value();
scrubber.onValueChanged = function (value) {
  display.innerHTML = value;
};
Output

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

Dismiss x
public
Bin info
jwmerrillpro
0viewers