2011-08-26 14:19:23 +00:00
|
|
|
$(document).ready(function(){
|
|
|
|
|
|
|
|
$('.tiptxt').each(function(){
|
|
|
|
//Si element existe alors on a le texte
|
|
|
|
var texte = $(this).find('span').html();
|
|
|
|
if (texte!=''){
|
|
|
|
$(this).qtip( {
|
|
|
|
content: { text: texte, },
|
|
|
|
solo: true,
|
|
|
|
style: { width: 400, name: 'cream' },
|
|
|
|
position: { corner: { target: 'bottomMiddle', tooltip: 'topMiddle' } }
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$(this).qtip( {
|
|
|
|
content: { text: 'Chargement...', url: $(this).find('a').attr('href')+'/q/ajax', },
|
|
|
|
solo: true,
|
|
|
|
style: { width: 400, name: 'cream' },
|
|
|
|
position: { corner: { target: 'bottomMiddle', tooltip: 'topMiddle' } }
|
|
|
|
});
|
|
|
|
}
|
2011-06-15 14:26:00 +00:00
|
|
|
});
|
2011-08-26 14:19:23 +00:00
|
|
|
|
2011-06-15 14:26:00 +00:00
|
|
|
});
|