ΘΕΜΑΤΙΚΕΣ ΕΝΟΤΗΤΕΣ
ΑΝΑΖΗΤΗΣΗ
ΗΜΕΡΟΛΟΓΙΟ
Δ | Τ | Τ | Π | Π | Σ | Κ |
29 | 30 | 31 | 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 1 | 2 |
“);
jQuery(“.em-cal-event-tooltip”).each(function() {
jQuery(this).detach().appendTo(“#em-cal-event-tooltip-block”);
jQuery(this).hover(function(e) {
jQuery(this).show();
}, function(e) {
jQuery(this).hide();
});
});
jQuery(“.em-calendar .em-cal-day”).each(function() {
var dayblock = jQuery(this);
var targetid = dayblock.attr(“id”);
var tooltip = jQuery(“#”+targetid + “-event-tooltip”);
tooltip.hover(function(e) {
dayblock.toggleClass(“em-cal-hovered”);
});
dayblock.hover(function(e) {
var position = jQuery(this).offset();
position.top += jQuery(this).outerHeight(true);
tooltip.css(position);
tooltip.show();
}, function(e) {
tooltip.hide();
});
});
});
Πηγή
Author: