41 lines
665 B
JavaScript
Raw Normal View History

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