I\'m working with d3. I create a globe of countries from a json file. The globe has svg paths, and each path has an id. I want to select a path with a particular ID. How wou
You can select an element by ID by prefixing the ID with "#" and using that as a selector:
d3.select("#ID");
or to select a path with that ID
d3.select("path#ID");