I am administering a site where if any user hovers over any of the hot links, the path of the link appears in the status bar. I would like to get rid of all status bar messages that occur when hovering over any links. To do this, I used the following code:
onMouseOver="MM_displayStatusMsg('');return document.MM_returnValue"
Sure enough, that worked like a charm for almost all cases, but one. On the web page, I have a couple of links that are not really hot links, but bitmap images where if the user clicks on them, they act like hot links. There are four of them, and the code is as follows:
<!-- Begin Image Map Area -->
<map name="products_Map">
<area shape="rect" alt="Products" coords="66,10,282,34" href="products/"
onmouseover="changeImages('products', 'images/main/products-over.jpg'); return true;"
onmouseout="changeImages('products', 'images/main/products.jpg'); return true;">
</map>
For some reason, no matter where I put the code to remove the status bar message, I can't get rid of it. I tried placing the code in various places within the Map tag but to no avail. Any ideas on what I am doing wrong, or what I can try?
Thanks!
onMouseOver="MM_displayStatusMsg('');return document.MM_returnValue"
Sure enough, that worked like a charm for almost all cases, but one. On the web page, I have a couple of links that are not really hot links, but bitmap images where if the user clicks on them, they act like hot links. There are four of them, and the code is as follows:
<!-- Begin Image Map Area -->
<map name="products_Map">
<area shape="rect" alt="Products" coords="66,10,282,34" href="products/"
onmouseover="changeImages('products', 'images/main/products-over.jpg'); return true;"
onmouseout="changeImages('products', 'images/main/products.jpg'); return true;">
</map>
For some reason, no matter where I put the code to remove the status bar message, I can't get rid of it. I tried placing the code in various places within the Map tag but to no avail. Any ideas on what I am doing wrong, or what I can try?
Thanks!