I have an SVG map of Colorado with polygons for each county. I\'d like the county name to pop up on mouse hover, but that isn\'t happening. I have the counties set to chan
For SVG you need to use a nested <title> element rather than a title attribute. E.g. <polygon points="..."><title>your title</title></polygon>
<title>
<polygon points="..."><title>your title</title></polygon>