Hi there, how/where can I add the following script to PRO so that I can show an image on a tooltip?
JS:
$(function() {
$( document ).tooltip({
items: "a",
content: function() {
var element = $( this );
if (element.attr('id') === 'bigpic') {
return "<img class='map' src='full-path-to-image' />";
}
}
});
});
HTML:
<a id='bigpic' href='#' title='' >image of something here.</a>




