Skip to content Skip to sidebar Skip to footer

Custom Dropdown Menu

i'm searching for a dropdown menu like this: http://www.staples.it/ You can active it pressing on ' Forniture per ufficio ' or ' informatica '. How can I push down a div with the d

Solution 1:

You can create a block with relative position under the menu and height: 0; Then on Click event you just use function slideDown() and slideUp()

Ex:

$(".selector").slideDown();

UPDATE

Here is the similar script for you https://jsfiddle.net/c2nuj88u/


Post a Comment for "Custom Dropdown Menu"