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:

enter image description here

on hover:

enter image description here

on click:

enter image description here

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

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -