0

I have a little menu that should expand to reveal the HTML below, which is hidden at present.

Following jQuery:

$('.mobileMenu').click(function(e) {
    $(this).toggleClass('arrowDown').next().slideToggle('slow');
});

This piece of code works great on this page (click the "hide" feature on the left col)

However I need to utilise the same feature with my menu for "mobile width".

If you resize your browser down to 320 or so and go here you'll see the menu is just +menu (bit smashy at the mo but working). Click it, and the menu does expand to show the links, the first being "shop online" but for some reason they are hidden/not showing. Ideally the green navigation div should expand

4

1 回答 1

0

其余的菜单项需要display: block,目前只有最上面的项目有它。

于 2013-04-18T17:44:16.307 回答