15 lines
325 B
JavaScript
15 lines
325 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') }
|
|
},
|
|
show: { delay: 5000 }
|
|
});
|
|
|
|
});
|