List mode and mouseover
This is the template:
Code:
<li><a title="" href="***" [mouseover]>[title] ([date])</a></li>
The date part is formatted to display the whole span of an event, e.g. (31.3 - 3.1).
And this is the code on the page:
Code:
<div class="***">
<ul class="***">
<?php
unset($displayedEvents, $showDateS, $EPCBLOG);
$showCat="50|83|42|45|54|47|81|26|28";
$LIST=1;
$listDays = 1;
$template="newstemplate_abwesenheit.php";
$DF = "j.n";
$epcListMouseover = "1";
require ("calendar.php");
?>
</ul>
</div>
What I thought this would do is that when I hover over a list entry, the mouseover would show the details of that entry.
However, what happens instead is that the mouseover displays all events from the start day of that entry, e.g. if the entry is from 31.3-1.3, the mouseover displays both the entry as well as a bunch of other entries that are active on that day (including those that started on an earlier date).
Is there a way to make the mouseover show only the details of the date that is actually displayed as [title] ([date]) within the a tag?
p.s. I also tried using a div tag but it behaved the exact same way.
|