1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| /*
| Kriesi (http://themeforest.net/user/Kriesi)
| http://www.kriesi.at/archives/create-a-multilevel-dropdown-menu-with-css-and-improve-it-via-jquery
| */
|
| function quick() {
| $("#quick ul ").css({ display: "none" });
| $("#quick li").hover(function () {
| $(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
| }, function () {
| $(this).find('ul:first').css({ visibility: "hidden" });
| });
| }
|
| $(document).ready(function () {
| quick();
| });
|
|