Reputation: 499
I have a D3 selection
let s = d3.select("#my-div")
that I would like to transform into a Jquery selection. Is it possible ?
Upvotes: 2
Views: 146
Reputation: 7210
const d3Selection = d3.select("#my-div");
const jQuerySelection = $(d3Selection.node());
Upvotes: 3