Yes, you won't be able to do it serverside, so it's javascript and css.
The easiest way to do it is probably to set the Visible
attribute to true
again (I don't know exactly how it is hidden...), and then apply a style class to the <div>
that you want to pop up:
.hidden
{
display: none;
}
Also, give the <div>
and id
(it has to be unique for the markup to validate). You can then use jQuery, a neat javascript library that makes a lot of things easier when writing client-side code, to show and hide the tooltip with the following code:
$(document).ready(function() {
$('#theMouseOverElement').hover(
function() {
$('#theToolTip').show();
},
function() {
$('#theToolTip').hide();
}
);
});
If the above code looks like jibberish to you, take a look at the jQuery documentation, and especially the hover and show/hide functions.