Thanks to Chiral Patel's comment, I found a way, thanks!
jQuery(document).ready(function (e) { jQuery('area').qtip({ style: { classes: 'qtip-default qtip qtip-light qtip-rounded', width: '250px', height: '70px', }, position: { my : 'bottom left', at: 'top right', method:'none' }, events: { show: function(event, api) { api.set ({ 'content.text': api.elements.target.attr('title') }); } } }); });
source share