D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
bsullins
Full window
Github gist
D3js - Working with External Data
<html> <head> <script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script> </head> <body> <h1>Hello World!</h1> <script> d3.html("https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22https%3A%2F%2Fcoinbase.com%2Fapi%2Fv1%2Fprices%2Fhistorical%22&format=xml&diagnostics=true&callback=cbfunc", function(error, data) { if(error){ console.log(error); } else { console.log(data); } }); </script> </body> </html>
Modified
http://d3js.org/d3.v3.min.js
to a secure url
https://d3js.org/d3.v3.min.js