38 lines
738 B
JavaScript
Raw Normal View History

$(document).ready(function(){
$('a.tiptxt').each(function(){
var texte = $(this).parent().find('span').html();
2011-08-30 07:11:39 +00:00
if (texte!=''){
$(this).qtip( {
2012-02-29 11:03:09 +00:00
content: { text: texte },
solo: true,
2011-08-30 07:11:39 +00:00
style: {
width: 400,
classes: "ui-tooltip-cream"
},
position: {
my: "top left",
2011-08-31 08:21:13 +00:00
at: "bottom left",
viewport : $(window),
effect: false
2011-08-30 07:11:39 +00:00
}
});
} else {
2011-08-30 07:11:39 +00:00
$(this).qtip({
2012-02-29 11:03:09 +00:00
content: { text: "Chargement...", ajax: { url: $(this).attr('href')+'/q/ajax' } },
solo: true,
2011-08-30 07:11:39 +00:00
style: {
width: 400,
classes: "ui-tooltip-cream"
},
position: {
my: "top left",
2011-08-31 08:21:13 +00:00
at: "bottom left",
viewport : $(window),
effect: false
2011-08-30 07:11:39 +00:00
}
});
}
});
});