Hi folks. Got a little problem with I hope you can help me with. I have a simple calendar script which displays a calendar on my website and at present, you enter dates using a seperate xml file.
If you enter an event for a certain date, the event is displayed next to the date. This is fine, all works great, but what I would like to do is actually display the event in a pop-up window.
So you would click on the date , a pop-up window would appear with the event displayed.
Any idea how I would do this? Maybe a bit of js is required, but I'm not too sure...
Here's the current line which displays the date and event..
// if event exists for this day, print day cell with event
if (isset($event[$dayNo])) {
echo "\t<td class=\"event\"><b>$dayNo</b>$event[$dayNo]</td>\n";
}