score:3

Accepted answer

You can do this using D3's data matching. The idea is to have the data "identify" the correct element for you.

d3.selectAll("allMyElements").data([datumIwantElementFor], suitableKeyFunction);

Complete demo here.

To be clear, I do not recommend taking this approach. This is prone to breaking when you add more elements to the document and accidentally select some of those, use the same data in more than one place, or change the data format. It will lead to bugs that are really hard to spot unless you know what you're looking for.

A better approach is to assign an ID or class from that data to each element that you bind the data to so that you can select it directly when you have the data. This will also be more efficient.


Related Query

More Query from same tag