A bunch of you here were so helpful in assisting me in this smooth drop down navigation system with subcategory 3 however, after looking at it, I was curious if I can get the same effect using only css and remove all jquery. The site that it will be used in was made with pure css and this was the only need for jquery so I wanted to see if I could eliminate the need for that altogether. This was the fiddle page. I figure using easing would work but not sure how to modify this. Also, the use of "role" in the html wont validate since my site is not html5.
<div id="trigger"><a href="#menu" class="menu-link">Menu</a></div>
</div>
<nav id="menu" role="navigation">
<ul>
<li><a href="#">Category 1</a></li>
<li><a href="#">Category 2</a></li>
<li id="Category3"><a href="#">Category 3</a>
<ul id="extraOptions">
<li><a href="#">Extra Option 1</a></li>
<li><a href="#">Extra Option 2</a></li>
<li><a href="#">Extra Option 3</a></li>
</ul></li>
<li><a href="#">Category 4</a></li>
<li><a href="#">Category 5</a></li>
<li><a href="#">Category 6</a></li>
</ul>
</nav>
SEE FIDDLE FILE
:hoverpseudo class on the elements you are currently applying the click method to in your javascript. Come back with a new question if you encounter a specific problem. – Forty-Two Jan 8 at 15:28