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>
  <iframe src="example.html" id="myFrame"></iframe>
  <button>Get Frame Content</button>
  <output></output>
</body>
</html>
 
var myFrame = document.getElementById('myFrame'),
    frameBody = myFrame.contentDocument.body,
    btn = document.querySelector('button'),
    op = document.querySelector('output');
frameBody.innerHTML = 'Click and edit the contents of this frame. Use ctrl-b and ctrl-i to add bold or italic.';
myFrame.contentDocument.designMode = 'on';
btn.addEventListener('click', function () {
  op.innerHTML = frameBody.innerHTML;
}, false);
Output

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

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers