2012-10-24 07:57:39 +00:00
|
|
|
$(document).ready(function(){
|
|
|
|
|
2012-12-23 17:34:25 +00:00
|
|
|
$('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') }
|
|
|
|
}
|
|
|
|
});
|
2012-10-24 07:57:39 +00:00
|
|
|
|
|
|
|
});
|