12 lines
285 B
JavaScript
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' } }
|
|
});
|
|
}
|
|
}); |