Forum Moderators: open
I have no idea where to start. If anyone knows of an example I can look at or has any ideas I would be greatly appreciative.
I'd recommend using some very simple Javascript, to allow you to position a new div or paragraph or whatever wherever you'd like it. It might look like this:
<script type="text/javascript">
function summary(summaryID,show) {
var obj = document.getElementById("summaryID");
if (show) obj.style.display = "block;
else obj.style.display = "none";
}
</script>
...
<table ...>
<tr>
<td>
<a href="#" onmouseover="summary('summary514',true);" onmouseout="summary('summary514',false);">514</a>
<p id="summary514">Short summary description goes here.</p>
</td>
...
</tr>
...
</table>