2012-02-29 11:03:09 +00:00

38 lines
737 B
JavaScript

$(document).ready(function(){
$('.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
}
});
}
});
});