Keep a:hover style when user mouses over sub-nav
Hi,
When the user mouses over Link One, a sub-nav div opens. While that div is open, I want Link One's a:hover style to persist, even though the user isn't technically mousing over it. I've tried a few different ways to make this happen with limited success. Can anyone help? My code is below.
Thanks!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
font-family: Cambria, Georgia, "Times New Roman", serif;
}
#nav_main {
color: #b30000;
position: absolute;
top: 100px;
left: 100px;
border: 1px solid #23405c;
}
#nav_sub {
position: absolute;
top: 106px;
left: 187px;
border: 1px solid #23405c;
visibility: hidden;
background-color: #23405c;
color: white;
}
#nav_sub a:link, #nav_sub a:visited {
color: white;
}
#nav_sub a:hover {
background-color: #b30000;
color: white;
text-decoration: none;
}
ul {
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
}
li {
margin-left: -15px;
}
a:link, a:visited {
color: #b30000;
}
a:hover {
background-color: #b30000;
color: white;
text-decoration: none;
}
-->
</style>
<script type="text/javascript">
<!--
function MM_showHideLayers() { //v9.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3)
with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible' v=='hide')?'hidden':v; }
obj.visibility=v; }
}
//-->
</script>
</head>
<body>
<div id="nav_main">
<ul>
<li><a href="link.html" onmouseover="MM_showHideLayers('nav_sub','','show')" onmouseout="MM_showHideLayers('nav_sub','','hide')">Link One</a></li>
<li><a href="link.html">Link Two</a></li>
<li><a href="link.html">Link Three</a></li>
<li><a href="link.html">Link Four</a></li>
</ul>
</div>
<div id="nav_sub" onmouseover="MM_showHideLayers('nav_sub','','show')" onmouseout="MM_showHideLayers('nav_sub','','hide')">
<ul>
<li><a href="link.html">Sub One</a></li>
<li><a href="link.html">Sub Two</a></li>
<li><a href="link.html">Sub Three</a></li>
<li><a href="link.html">Sub Four</a></li>
</ul>
</div>
</body>
</html>
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
font-family: Cambria, Georgia, "Times New Roman", serif;
}
#nav_main {
color: #b30000;
position: absolute;
top: 100px;
left: 100px;
border: 1px solid #23405c;
}
#nav_sub {
position: absolute;
top: 106px;
left: 187px;
border: 1px solid #23405c;
visibility: hidden;
background-color: #23405c;
color: white;
}
#nav_sub a:link, #nav_sub a:visited {
color: white;
}
#nav_sub a:hover {
background-color: #b30000;
color: white;
text-decoration: none;
}
ul {
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
}
li {
margin-left: -15px;
}
a:link, a:visited, a.out {
color: #b30000;
}
a:hover, a.over {
background-color: #b30000;
color: white;
text-decoration: none;
}
-->
</style>
<script type="text/javascript">
<!--
function MM_showHideLayers() { //v9.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
persist(args);
for (i=0; i<(args.length-2); i+=3)
with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible' : (v=='hide')?'hidden':v; }
obj.visibility=v; }
}
function persist(args) {
var parent=document.getElementById('nav_main').getElementsByTagName('a')[args[1]];
parent.className = (args[2]=='show')? 'over' : 'out';
}
//-->
</script>
</head>
<body>
<div id="nav_main">
<ul>
<li><a href="link.html" onmouseover="MM_showHideLayers('nav_sub',0,'show')" onmouseout="MM_showHideLayers('nav_sub',0,'hide')">Link One</a></li>
<li><a href="link.html" onmouseover="MM_showHideLayers('nav_sub2',1,'show')" onmouseout="MM_showHideLayers('nav_sub2',1,'hide')">Link Two</a></li>
<li><a href="link.html">Link Three</a></li>
<li><a href="link.html">Link Four</a></li>
</ul>
</div>
<div id="nav_sub" onmouseover="MM_showHideLayers('nav_sub',0,'show')" onmouseout="MM_showHideLayers('nav_sub',0,'hide')">
<ul>
<li><a href="link.html">Sub One</a></li>
<li><a href="link.html">Sub Two</a></li>
<li><a href="link.html">Sub Three</a></li>
<li><a href="link.html">Sub Four</a></li>
</ul>
</div>
</body>
</html>
At least 98% of internet users' DNA is identical to that of chimpanzees
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Bookmarks