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?

  • take.ms/lY865 here is a screenshot of where everything works - Aleksei Zukovski
  • $(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
  • How to fix it, what would it work as it should? - Aleksei Zukovski

0