2011-08-25 09:54:13 +00:00
|
|
|
$(document).ready(function(){
|
|
|
|
|
|
|
|
$('.tiptxt').each(function(){
|
2011-08-30 09:27:08 +00:00
|
|
|
var texte = $(this).parent().find('span').html();
|
2011-08-29 21:14:22 +00:00
|
|
|
if (texte!=''){
|
2011-08-25 09:54:13 +00:00
|
|
|
$(this).qtip( {
|
2011-08-29 21:14:22 +00:00
|
|
|
content: {
|
|
|
|
text: texte
|
|
|
|
},
|
2011-08-25 09:54:13 +00:00
|
|
|
solo: true,
|
2011-08-29 21:14:22 +00:00
|
|
|
style: {
|
|
|
|
width: 400,
|
|
|
|
classes: "ui-tooltip-cream"
|
|
|
|
},
|
|
|
|
position: {
|
|
|
|
at: "bottom center",
|
|
|
|
my: "top center"
|
|
|
|
}
|
2011-08-25 09:54:13 +00:00
|
|
|
});
|
|
|
|
} else {
|
2011-08-29 21:14:22 +00:00
|
|
|
$(this).qtip({
|
|
|
|
content: {
|
|
|
|
text: "Chargement...",
|
|
|
|
ajax: {
|
2011-08-30 09:27:08 +00:00
|
|
|
url: $(this).attr('href')+'&q=ajax'
|
2011-08-29 21:14:22 +00:00
|
|
|
}
|
|
|
|
},
|
2011-08-25 09:54:13 +00:00
|
|
|
solo: true,
|
2011-08-29 21:14:22 +00:00
|
|
|
style: {
|
|
|
|
width: 400,
|
|
|
|
classes: "ui-tooltip-cream"
|
|
|
|
},
|
|
|
|
position: {
|
|
|
|
at: "bottom center",
|
|
|
|
my: "top center"
|
|
|
|
}
|
2011-08-25 09:54:13 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|