<html><head><script type="text/javascript">function showValue() { var x=document.getElementById("id1") x.innerHTML = 'Hello World'; }</script></head><body><h2>Move the mouse over text to see the message.</h2><p id="Link1" onmouseover="showValue()">Hello</p><div id="id1"></div></body></html>