I'm working on having a mouseover effect that displays text and data. I figured out how to append HTML to a div like this:
.on("mouseover", function(d) {
d3.select(this)
var string = "<p><strong>~Text</strong>: </p>";
string += "<p><strong>Text</strong>: </p>";
d3.select("#textbox")
.html("")
.append("text")
.html(string)
But how to append the HTML to a position like the corner of the SVG without using a div?