20 lines
591 B
JavaScript
20 lines
591 B
JavaScript
$(document).ready(function(){
|
|
|
|
$('a.tiptxt').each(function(){
|
|
var texte = $(this).parent().find('span').html();
|
|
if (texte!=''){
|
|
$(this).qtip( {
|
|
solo: true, style: { width: 400 },
|
|
position: { my: "top left", at: "bottom left", viewport : $(window), effect: false },
|
|
content: { text: texte }
|
|
});
|
|
} else {
|
|
$(this).qtip({
|
|
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' } }
|
|
});
|
|
}
|
|
});
|
|
|
|
}); |