Finished topic http://www.webyzona.com/templates/flippy/index.html
A level 3 menu opens when you hover over the first level menu. An example is http://festivaly.com.cy/test.html# (the services tab). On pure code, everything works as it should and all levels do not open right away. How to understand which code opens all levels?
$(document).ready(function() { $('ul.nav li.dropdown').hover(function() { $(this).find('.dropdown-menu').stop(true, true).fadeIn(500); }, function() { $(this).find('.dropdown-menu').stop(true, true).fadeOut(100); }); });Here is the code. From custome.js - Russian Bear