2013-05-16 08:15:52 +00:00

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 }
});
});