i created a webpage years ago that pops up a bookmarked block of text with mouseover. now i find out that when someone clicks on the mouseover text it loads the entire webpage in a new window.
i have searched/read/scanned a lot of the Forums posts and can't seem to find a solution to return no action if someone clicks on the mouseover bookmark link.
i think it is something real simple but i am brain dead from all of the reading. any help would be appreciated.
TIA
here are the 2 sections of code
AND
i have searched/read/scanned a lot of the Forums posts and can't seem to find a solution to return no action if someone clicks on the mouseover bookmark link.
i think it is something real simple but i am brain dead from all of the reading. any help would be appreciated.
TIA
here are the 2 sections of code
Code:
<script TYPE="text/javascript" LANGUAGE="JavaScript"><!--
function show(object) {
if (document.layers && document.layers[object] != null)
document.layers[object].visibility = 'visible';
else if (document.all)
document.all[object].style.visibility = 'visible';
}
function hide(object) {
if (document.layers && document.layers[object] != null)
document.layers[object].visibility = 'hidden';
else if (document.all)
document.all[object].style.visibility = 'hidden';
}
//--></script>
<style TYPE="text/css"><!--
.myStyle {
position: absolute;
visibility: hidden;
}
//--></style>
Code:
<font color="#000000" face="Arial" size="3"><b><i><a href="#"
onMouseover="show('myLayer1')" onMouseout="hide('myLayer1')">Our Concept</a></i></b></font>
<div ID="myLayer1" CLASS="myStyle">