38 lines
738 B
JavaScript

$(document).ready(function(){
$('a.tiptxt').each(function(){
var texte = $(this).parent().find('span').html();
if (texte!=''){
$(this).qtip( {
content: { text: texte },
solo: true,
style: {
width: 400,
classes: "ui-tooltip-cream"
},
position: {
my: "top left",
at: "bottom left",
viewport : $(window),
effect: false
}
});
} else {
$(this).qtip({
content: { text: "Chargement...", ajax: { url: $(this).attr('href')+'/q/ajax' } },
solo: true,
style: {
width: 400,
classes: "ui-tooltip-cream"
},
position: {
my: "top left",
at: "bottom left",
viewport : $(window),
effect: false
}
});
}
});
});