Skip to content

Instantly share code, notes, and snippets.

@captainwz
Created December 2, 2012 05:51
Show Gist options
  • Save captainwz/4187145 to your computer and use it in GitHub Desktop.
Save captainwz/4187145 to your computer and use it in GitHub Desktop.
d3-2-demo1
<html>
<head>
<script src="d3-2-demo1-jsondata.js" type="text/javascript">
</script>
<script type="text/javascript">
alert(data.member[0].name);
</script>
</head>
<body></body>
</html>
var data=
{
"flight":815,
"member":
[{
"name":"Jack",
"sex":"male",
},
{
"name":"Kate",
"sex":"female",
},
{
"name":"Sawyer",
"sex":"male",
}]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment