Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] Netscape 4


  • From: javascript@xxxxxxxxxx (Andrew Gibson)
  • Subject: [Javascript] Netscape 4
  • Date: Mon, 22 Oct 2001 21:34:17 +1300

I have to do a drop down menu that will work in NS 4.0 !

I'm trying to have a layer hidden as below....it hides the text in the link
ok, but when I hover the mouse over it, the cursor acts as if the link is
there and on clicking, takes me to the page!

It works ok  with  position:absolute

Andrew Gibson

<head>
<style>
#sub5
{ position: relative;
z-index:0;
visibility:hidden;
}
</style>
</head>
<body>

<div id="sub5">
<a href="#">My Link</a>
</div>

</body>