http://thetranslte.com/ tell me why the menu of the city when choosing does not throw the link? Nothing happens. Did on jquery.
<script type="text/javascript"> $("#dropdown").on("click", function(e){ e.preventDefault(); if($(this).hasClass("open")) { $(this).removeClass("open"); $(this).children("ul").slideUp("fast"); } else { $(this).addClass("open"); $(this).children("ul").slideDown("fast"); } }); </script>