I've now decided it's about time I learned how to use jQuery...
I want to know how to trigger an A:HOVER function for a menu. I have the latest jQuery downloaded (1.3.2).
I know that I have to edit the section highlighted below, but what do I put into it?
Code:
<script type="text/javascript">
$(document).ready(function(){
$(document.body).click(function () {
$("div:hidden:first
").fadeIn("slow");
});
});
</script>
My menu is this:
Code:
<div class="menu">
<ul class="nav">
<li><a href="/">Web</a></li>
<li><a href="images/">Images</a></li>
<li><a href="maps/">Maps</a></li>
<li><a href="news/">News</a></li>
<li><a href="video/">Video</a></li>
<li><a href="gmail/">Gmail</a></li>
</ul>
</div>
Yes, I'm trying to recreate Google... 
Any help or tips would be appreciated.
// X96 \\
Bookmarks