14 lines
304 B
JavaScript
14 lines
304 B
JavaScript
$(document).ready(function(){
|
|
|
|
$('a.lienfiche').qtip({
|
|
style: { classes: "qtip-dark" },
|
|
position: { at: "top center", my: "bottom center" },
|
|
content: {
|
|
text: "Chargement...",
|
|
title: { button: true, text: $(this).attr('name') },
|
|
ajax: { url: $(this).attr('href') }
|
|
}
|
|
});
|
|
|
|
});
|