2011-08-26 14:19:23 +00:00
|
|
|
$(document).ready(function(){
|
|
|
|
|
2012-09-05 14:22:23 +00:00
|
|
|
$('a.tiptxt').each(function(){
|
2011-08-30 09:50:42 +00:00
|
|
|
var texte = $(this).parent().find('span').html();
|
2011-08-30 07:11:39 +00:00
|
|
|
if (texte!=''){
|
2011-08-26 14:19:23 +00:00
|
|
|
$(this).qtip( {
|
2012-12-23 17:34:25 +00:00
|
|
|
solo: true, style: { width: 400 },
|
|
|
|
position: { my: "top left", at: "bottom left", viewport : $(window), effect: false },
|
|
|
|
content: { text: texte }
|
2011-08-26 14:19:23 +00:00
|
|
|
});
|
|
|
|
} else {
|
2011-08-30 07:11:39 +00:00
|
|
|
$(this).qtip({
|
2012-12-23 17:34:25 +00:00
|
|
|
solo: true, style: { width: 400 },
|
|
|
|
position: { my: "top left", at: "bottom left", viewport : $(window), effect: false },
|
|
|
|
content: { text: "Chargement...", ajax: { url: $(this).attr('href')+'/q/ajax' } }
|
2011-08-26 14:19:23 +00:00
|
|
|
});
|
|
|
|
}
|
2011-06-15 14:26:00 +00:00
|
|
|
});
|
2011-08-26 14:19:23 +00:00
|
|
|
|
2011-06-15 14:26:00 +00:00
|
|
|
});
|