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 id="wrap">
    <ul>
      <li>Apples</li>
      <li>Oranges</li>
      <li>Peaches</li>
      <li>Bananas</li>
      <li>Mangoes</li>
    </ul>
  </div>
  <div id="wrap-2">
    <p>Paragraph <span>example</span>.</p>
  </div>
  <output>List of tags iterated over: </output>
</body>
</html>
 
var div = document.getElementById('wrap'),
    op = document.querySelector('output'),
    iterator = document.createNodeIterator(div, NodeFilter.SHOW_ELEMENT, null, false);
var node = iterator.nextNode();
while (node !== null) {
  op.innerHTML += node.tagName + ' ';
  node = iterator.nextNode();
}
Output

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

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers