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>
</head>
<body>
  <div contenteditable="true"><p>lkjkljlkjHello there</p></div>
  
  <button>Hit me babe!</button>
</body>
</html>
 
function selectElementContents(el) {
    var range = document.createRange();
    range.selectNodeContents(el);
    var sel = window.getSelection();
    sel.removeAllRanges();
    sel.addRange(range);
}
var p = document.querySelector( 'p' );
selectElementContents(p);
// var a = document.execCommand( 'copy' );
document.querySelector('button').addEventListener('click', function() {
  var b = document.execCommand( 'paste' );
  console.log( b );
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers