Hi, Carlos...

I'm working on replicating your accordion menu on
the left side of www.generalmedicine.com/index2.htm
and was wondering what your css looks like for
removing the link border from around your graphics.

Could I have a look at that?  Is it this referenced file:  sideNavs.css ?

Thanks,

Rick

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Carlos Sanz
Sent: Friday, March 02, 2007 11:26 AM
To: 'jQuery Discussion.'
Subject: Re: [jQuery] Accordion Menu setting

Works perfect thanks a lot I replace the ready function with this one:

         jQuery(document).ready(function($){
           // Do jQuery stuff using $
                $("dd").hide();
                $('dt a').click(function(){
        
$(this).parent().next().siblings('dd:visible').slideUp('slow');
                    $(this).parent().next().slideToggle('slow');
                    return false;
                });
         });

And the behaviour is once you click on a menu item it opens, if you click
again it closes.
An all the items on the menu keep hidden

Thanks a lot





_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to