hi ricardo,

tx, for the example and the code.

the thing i have a problem with is the submenu part. Please click on
second or third button to see what i mean
- i need to dropdown the button beneath
- slide the submenu in


regards


On 27 feb, 20:52, ricardobeat <ricardob...@gmail.com> wrote:
> You can do that with pure CSS:
>
> http://jsbin.com/eyivuhttp://jsbin.com/eyivu/edit
>
> with jQuery:
>
> $('#menu li a').hover(function(){
>    $(this).stop()
>       .css({ backgroundColor: '#C66' })
>       .animate({ marginLeft: '+=5px' }, 200);}, function(){
>
>   $(this).stop()
>       .css({ backgroundColor: '#ACA' })
>       .animate({ marginLeft: '-=5px' }, 200);
>
> });
>
> That's kind of self-explanatory, you'll find all about the working
> details at docs.jquery.com
>
> cheers,
> - ricardo
>
> On Feb 27, 3:37 pm, 123gotoandplay <wesweatyous...@gmail.com> wrote:
>
> > Hi there,
>
> > Could anyone get me started to convert this flash menu to a jquery
> > menu?www.bldd.nl/jsproblems/convertToJQuery.html
>
> > It's a dropdown menu with submenu's sliding in from the left.
>
> > regards,
>
>

Reply via email to