At the moment when I mouseover a country on JQVMap I get the country name. The code sources that name from the SVG file. In the SVG file the name is shown as:
"path":".93z","name":"Uruguay",
And in the JQVmap source code it is shown as
if (params.showTooltip) {
map.label.text(mapData.paths[code].name);
jQuery(params.container).trigger(labelShowEvent, [map.label, code]);
What I want to do is add a small table that will be shown under the country name. I've tried to put an escape character to give me a new line and try allign it myself but it's looking to be harder then that. Is it possible to make another element like name called 'table' and call it in the source code or should I try include the information with the name element?