In browsers on androids, drop-down menus on the site do not work.
JS code:

$(document).ready(function(){ load([...document.querySelectorAll('img')]); function load(imgs) { let img = imgs.shift(); imgs.length && (img.onload = load.bind(0, imgs)); img.setAttribute('src', img.getAttribute('src')); } // mobile menu toggling $("#menu_icon").click(function(){ $("header nav ul").toggleClass("show_menu"); $("#menu_icon").toggleClass("close_menu"); return false; }); //Contact Page Map Centering var hw = $('header').width() + 50; var mw = $('#map').width(); var wh = $(window).height(); var ww = $(window).width(); $('#map').css({ "max-width" : mw, "height" : wh }); if(ww>1100){ $('#map').css({ "margin-left" : hw }); } } 
  • Maybe an outdated browser that does not support ES6 is used? - Maxim Levitsky
  • one
    Androids are very different and the browsers on them are much more than one. And I am 146% sure that most of them do not know how to spread operator (this is at least). - Alexey Ten

0