2011-08-30 16:04:23 +00:00

16 lines
292 B
JavaScript

$(document).ready(function(){
//Tooltip date de maj
if ($('a.datemaj').length){
$('a.datemaj').qtip({
content: $('a.datemaj > span').html(),
style: {
width: 170,
classes: "ui-tooltip-cream"
},
position: {
at: "bottom center",
my: "top center"
}
});
}
});