/    Sign up×
Community /Pin to ProfileBookmark

dropdown menu ie6

i have dropdown menu it’s appear good at firefox,chrome,IE8
but at IE6 it’s not good

this is code

[CODE]<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><html>
<head>
<title>Drop-Down Menu</title>

<!– dd menu –>
<style>
#mmenu
{ margin: 0;
padding: 0;
z-index: 30}

#mmenu li
{ margin: 0;
padding: 0;
list-style: none;
float: left;
font: bold 11px arial}

#mmenu li a
{ display: block;
margin: 0 1px 0 0;
padding: 4px 10px;
width: 60px;
background: #5970B2;
color: #FFF;
text-align: center;
text-decoration: none}

#mmenu li a:hover
{ background: #49A3FF}

#mmenu div
{ position: absolute;
visibility: hidden;
margin: 0;
padding: 0;
background: #EAEBD8;
border: 1px solid #5970B2}

#mmenu div a
{ position: relative;
display: block;
margin: 0;
padding: 5px 10px;
width: auto;
white-space: nowrap;
text-align: left;
text-decoration: none;
background: #EAEBD8;
color: #2875DE;
font: 11px arial}

#mmenu div a:hover
{ background: #49A3FF;
color: #FFF}
</style>
<script type=”text/javascript”>
<!–
var timeout = 500;
var closetimer = 0;
var ddmenuitem = 0;

// open hidden layer
function mopen(id)
{
// cancel close timer
mcancelclosetime();

// close old layer
if(ddmenuitem) ddmenuitem.style.visibility = ‘hidden’;

// get new layer and show it
ddmenuitem = document.getElementById(id);
ddmenuitem.style.visibility = ‘visible’;

}
// close showed layer
function mclose()
{
if(ddmenuitem) ddmenuitem.style.visibility = ‘hidden’;
}

// go close timer
function mclosetime()
{
closetimer = window.setTimeout(mclose, timeout);
}

// cancel close timer
function mcancelclosetime()
{
if(closetimer)
{
window.clearTimeout(closetimer);
closetimer = null;
}
}

// close layer when click-out
document.onclick = mclose;
// –>
</script>

</head>
<body>

<ul id=”mmenu”>
<li><a href=”#” onmouseover=”mopen(‘m1’)” onmouseout=”mclosetime()”>testlinks</a>
<div id=”m1″ onmouseover=”mcancelclosetime()” onmouseout=”mclosetime()”>
<a href=”#”>testlink1</a>
<a href=”#”>testlink2</a>
<a href=”#”>testlink3</a>
<a href=”#”>testlink4</a>
<a href=”#”>testlink5</a>
</div>
</li>
<li><a href=”#” onmouseover=”mopen(‘m2’)” onmouseout=”mclosetime()”>menu link</a>
<div id=”m2″ onmouseover=”mcancelclosetime()” onmouseout=”mclosetime()”>
<a href=”#”>testlink1</a>
<a href=”#”>testlink2</a>
<a href=”#”>testlink3</a>
<a href=”#”>testlink4</a>
</div>
</li>

</ul>

</body>
</html>[/CODE]

any help

to post a comment
CSS

0Be the first to comment 😎

×

Success!

Help @mero spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...