JSFiddle - React, Tailwind, and code Playground
HTML
<a id='riverroad' href='#' title='' >image of 1 Maple St.</a>
JavaScript
$(function() {
$( document ).tooltip({
items: "a",
content: function() {
var element = $( this );
if (element.attr('id') === 'riverroad') {
return "<img class='map' src='http://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Wien_Stefansdom_DSC02656.JPG/450px-Wien_Stefansdom_DSC02656.JPG' />";
}
}
});
});