D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
ginseng666
Full window
Github gist
Municipal Election Data Test
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Loading Dataset</title> <script type="text/javascript" src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script> </head> <body> <svg id="svg_test" width="500" height="300"> <rect x="50" y="50" width="50" height="50" fill="blue" /> </svg> <script type="text/javascript"> d3.csv("municipal_elections.csv", function(data) { 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