2011-04-21 13:31:59 +00:00

12 lines
285 B
JavaScript

$(document).ready(function(){
//Tooltip date de maj
if ($('a.datemaj').length){
$('a.datemaj').qtip({
content: $('a.datemaj > span').html(),
style: { name: 'cream', width: 170 },
position: {
corner: { target: 'bottomMiddle',
tooltip: 'topMiddle' } }
});
}
});