> hello
>
[quoted text clipped - 11 lines]
>
> thanks !
Here is an untested example. No idea if it is any good, but it will
probably work.
<div id="DivExample" onmouseover="show('DivExample', 'ree');"
onmouseout="show('DivExample', ' ');" > </div>
<script type="text/javascript><!--
function show (eln, msg) {
if(document.getElementById) {
var el = document.getElementById(eln);
el.innerHTML = msg;
return true;
}
return false;
}
//--></script>
sorry sorry sorry...
I found that :
http://fr.selfhtml.org/javascript/objets/node.htm#node_value
it's in french, but the code is quite simple and works as well with a div
as with a p
> hello
>
[quoted text clipped - 11 lines]
>
> thanks !