19 lines
339 B
JavaScript
19 lines
339 B
JavaScript
|
$(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"
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|