Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  nodes <div id="nodes">?</div>
  cores <div id="cores">?</div>
</body>
</html>
 
$(document).ready(function() {
  $.ajax({
    url: "nodes.xml",
    success: function(responseXML) {
      $xml = $.parseXML( responseXML );
      $( "#nodes" ).text($xml.find("NODES").text());
      $( "#cores" ).text($xml.find("CORES").text());
    }
  });
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers