19 lines
339 B
JavaScript
Raw Normal View History

2012-10-24 07:57:39 +00:00
$(document).ready(function(){
$('a.lienfiche').each(function(){
$(this).qtip({
content: {
text: "Chargement...",
title: { text: $(this).attr('name') },
ajax: { url: $(this).attr('href') }
},
style: { classes: "ui-tooltip-dark" },
position: {
at: "top center",
my: "bottom center"
}
});
});
});