No sé... os dejo el código que uso haber si a alguien se os ocurre que puede estar pasando,... Gracias de antemano!!!
los id son algo así (habrá unos 100 distintos...):
Código HTML:
Ver original
Código HTML:
Ver original
$(".toolTipGrafico").each(function(){ var id = this.id; $(this).qtip({ content: { // Set the text to an image HTML string with the correct src URL to the loading image you want to use text: 'nada', ajax: { url:'/serviceFactoryManager/qtipEvolucion.action?datos='+id // Use the rel attribute of each element for the url to load }, title: { text: 'Evolución del Indicador', // Give the tooltip a title using each elements text } }, position: { at: 'bottom left', // Position the tooltip above the link my: 'top left', viewport: $(window), // Keep the tooltip on-screen at all times effect: true // Disable positioning animation }, show: { //event: 'click', solo: true // Only show one tooltip at a time }, //hide: 'unfocus', style: { classes: 'qtip-wiki qtip-light qtip-shadow' } }); });