Skip to content

Commit

Permalink
musicmetric experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
Amos Wenger committed Jun 17, 2011
1 parent 3e09017 commit 180df23
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions musicmetric/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<html>
<body>

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.js"></script>
<script type="text/javascript">
$.ajax({
type: "GET",
url: "https://musicbrainz.org/ws/2/artist/?limit=1&query=the streets",
dataType: "xml",
success: function(xml) {
console.log("name = " + $(xml).find('name').text());
}
});

</script>
</body>
</html>

0 comments on commit 180df23

Please sign in to comment.