jquery-archive / jquery-mobile

jQuery Mobile Framework
https://jquerymobile.com
Other
9.7k stars 2.41k forks source link

Show slow not working iphone IOS #8669

Open tiagocaus opened 3 years ago

tiagocaus commented 3 years ago

Good morning everyone. Why does this code below work on the browser, android, but does not work on IOS?

$(document).ready(function() {
    $("#menuIco").on("click touchstart", function() {
        if ($('#menuNav').is(':hidden')) {
            $('#menuNav').show('slide', {direction: 'left'}, 400);
        } else {
            $('#menuNav').hide('slide', {direction: 'left'}, 400);
        }
    });
});