Skip to content

Instantly share code, notes, and snippets.

@tenten0213
Created September 30, 2013 07:45
Show Gist options
  • Save tenten0213/6760546 to your computer and use it in GitHub Desktop.
Save tenten0213/6760546 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Selection</title>
</head>
<body>
<div id="text">
<p>Hello! D3.js</p>
</div>
<button onclick="
d3.select('#text').style('color', 'red')">
Red
</button>
<button onclick="
d3.select('#text').style('color', 'black')">
Black
</button>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment