$(document).ready(function() { $('div.tooltip_picto').each(function() { var cont = $("div#" + $(this).attr('rel')).html(); $(this).qtip( { prerender: true, overwrite: false, content: cont, position: { my: 'top right', at: 'bottom center' }, show: { event: 'mouseover', //delay: 1000, effect: function(offset) { $(this).fadeIn(300); // "this" refers to the tooltip }, solo: true }, hide: 'unfocus', style: { classes: 'ui-tooltip-light ui-tooltip-picto', width: 150 } }) }); });