d3.selectorAll(selector)
Given the specified selector, returns a function which returns all descendants of this
element that match the specified selector. This method is used internally by selection.selectAll. For example, this:
var div = selection.selectAll("div");
Is equivalent to:
var div = selection.selectAll(d3.selectorAll("div"));
Please login to continue.