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>
</head>
<body>
  <p id="p1">Example element with text.</p>
  <p id="p2">Example 2nd element.</p>
</body>
</html>
 
var p1 = document.getElementById('p1'),
    p2 = document.getElementById('p2');
p1.insertAdjacentElement('beforebegin', p2);
p1.insertAdjacentText('beforeend', 'TEXT');
Output

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

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers