css - jQuery menu styling -
i've seen nice jquery-like menu on force.com (after log-in). , can't find tutorial/example on how create using jquery.
it looks this:
before hover:

on hover:

on click:

anyone knows can find example on how create 1 of these?
thanks.
this basic 1 :) u need css style how ever u wish :)
<ul>     <li class="header">header</li>     <li class="menu" style="display:none;">        <ul>           <li>me</li>        </ul>     </li> </ul>    $('.header').click(function (){  $('.menu').toggle(); }); 
Comments
Post a Comment