Hi everyone, I ran into the problem of displaying a modal window, that is, Modalka opens in adaptive design mode and works on Firefox on all simulated devices. But in fact on android and Ios in any way (live) (((
HTML
<a class="btn btn-info" data-toggle="adaptive-modal" href="javascript:void(0)" onclick="openLoginModal();"> Войти </a> Js
function openLoginModal(){ showLoginForm(); setTimeout(function(){ $('#loginModal').modal('show'); }, 230); } function showLoginForm(){ $('#loginModal .registerBox').fadeOut('fast',function(){ $('.loginBox').fadeIn('fast'); $('.register-footer').fadeOut('fast',function(){ $('.login-footer').fadeIn('fast'); }); $('.modal-title').html('Войти'); }); $('.error').removeClass('alert alert-danger').html(''); }