vertical menu with bootstrap and jQuery

user3856699

I'm trying to create a menu like this : Demo .

First of all : Here is my fiddle . There is a button top of the menu and there is a sidebar menu with 4 links that the last one has sublinks.

After click on the button menu get wider.

So far so good. I want to show sublinks with hover when mouse on the last links and also I want to show sublinks below the parent link with click when menu get wider .

I did this, but there is a problem. I want to show sublinks with click when menu get wide.

But now it didn't !

Here is my important CSS

.rightbar.noneStyle #rightMenu.accordion:hover .accordion-body.collapse{
    background: none repeat scroll 0 0 #fff;
    display: none;
    height:0;
    position:unset;
    right: auto;
    top: auto;
    visibility: visible;
}

.rightbar #rightMenu.accordion:hover .accordion-body.collapse {
    background: none repeat scroll 0 0 #fff;
    display: block;
    height: auto !important;
    position: absolute;
    left: 61px;
    top: -8px;
    visibility: visible;
}
Sushant Maharjan

I have made some changes in the css and made exactly as you have shown in Demo. Here is updated code in my http://jsfiddle.net/sushantmaharjan/z5ogk3yb/

I have used :not(selector) in css. Check for the browser compatibility. It works fine in most modern browsers.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Multilevel (up to 3 level) Vertical Menu with bootstrap/Jquery

From Dev

JQuery animated vertical menu

From Dev

JQuery animated vertical menu

From Dev

Vertical Dropdown menu with jQuery

From Dev

Creating a collapsable vertical menu in bootstrap

From Dev

jquery - vertical accordion navigation menu

From Dev

Bootstrap 3 vertical menu with toggable submenus

From Dev

Vertical dropdown menu in sidebar using BootStrap

From Dev

Bootstrap menu (nav) collapse horizontally instead of vertical

From Dev

Vertical dropdown menu in sidebar using BootStrap

From Dev

Horizontal submenu for a vertical main menu using bootstrap

From Dev

vertical menu with submenu in bootstrap material design

From Java

Vertical CSS / jQuery Dropdown menu issue?

From Dev

Sliding from right to left vertical Menu > Jquery

From Dev

Bootstrap menu click event in jQuery

From Dev

Bootstrap 3 vertical affix menu example as in the docs - resizing issue

From Dev

bootstrap vertical menu ( with sub nav ) to be horizontal in small devices

From Dev

Stop sliding up the current item on DC jQuery Vertical Accordion Menu

From Dev

Menu with Bootstrap and jquery using css transition

From Dev

Get collapsed menu on active link Jquery & Bootstrap

From Dev

How to close a bootstrap dropdown menu with jquery?

From Dev

Bootstrap dropdown menu jQuery conflicts with other libraries?

From Dev

Strange hover behavior in the sidebar jquery and bootstrap menu

From Dev

Bootstrap JQuery: dropdown menu validation on selected item

From Dev

Changing/Adding Bootstrap dropdown menu using jQuery

From Dev

Bootstrap & jQuery - Toggle Div based on Bootstrap Dropdown Menu open or close

From Dev

Create Vertical Menu

From Dev

Is it possible to make this menu to be vertical?

From Dev

Vertical accordion menu css

Related Related

  1. 1

    Multilevel (up to 3 level) Vertical Menu with bootstrap/Jquery

  2. 2

    JQuery animated vertical menu

  3. 3

    JQuery animated vertical menu

  4. 4

    Vertical Dropdown menu with jQuery

  5. 5

    Creating a collapsable vertical menu in bootstrap

  6. 6

    jquery - vertical accordion navigation menu

  7. 7

    Bootstrap 3 vertical menu with toggable submenus

  8. 8

    Vertical dropdown menu in sidebar using BootStrap

  9. 9

    Bootstrap menu (nav) collapse horizontally instead of vertical

  10. 10

    Vertical dropdown menu in sidebar using BootStrap

  11. 11

    Horizontal submenu for a vertical main menu using bootstrap

  12. 12

    vertical menu with submenu in bootstrap material design

  13. 13

    Vertical CSS / jQuery Dropdown menu issue?

  14. 14

    Sliding from right to left vertical Menu > Jquery

  15. 15

    Bootstrap menu click event in jQuery

  16. 16

    Bootstrap 3 vertical affix menu example as in the docs - resizing issue

  17. 17

    bootstrap vertical menu ( with sub nav ) to be horizontal in small devices

  18. 18

    Stop sliding up the current item on DC jQuery Vertical Accordion Menu

  19. 19

    Menu with Bootstrap and jquery using css transition

  20. 20

    Get collapsed menu on active link Jquery & Bootstrap

  21. 21

    How to close a bootstrap dropdown menu with jquery?

  22. 22

    Bootstrap dropdown menu jQuery conflicts with other libraries?

  23. 23

    Strange hover behavior in the sidebar jquery and bootstrap menu

  24. 24

    Bootstrap JQuery: dropdown menu validation on selected item

  25. 25

    Changing/Adding Bootstrap dropdown menu using jQuery

  26. 26

    Bootstrap & jQuery - Toggle Div based on Bootstrap Dropdown Menu open or close

  27. 27

    Create Vertical Menu

  28. 28

    Is it possible to make this menu to be vertical?

  29. 29

    Vertical accordion menu css

HotTag

Archive