Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  
</body>
</html>
 
 var url = 'http://pipes.yahoo.com/pipes/pipe.run?_id=15269db939f177df16bb6b8314b79a02&_render=json&_callback=?';
  $.ajax({
    url: url,
    dataType: 'jsonp'
  })
  .done(function(jsonData) {
    var items = jsonData.value.items;
    items.forEach(function (item) {
      // title = item.item + ".itunes:";
      console.log(item.item);
    });
  })
  .fail(function() {
    console.log('error');
  });
Output

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

Dismiss x
public
Bin info
arudminpro
0viewers