1
I noticed that the bootstraps menu does not close after selecting an option when using a mobile phone, so I want to run only if I am on a mobile phone, I am doing this way, would be correct? Thanks
<script>
    jQuery(document).ready(function($){
        var deviceAgent = navigator.userAgent.toLowerCase();
        var agentID = deviceAgent.match(/(iphone|ipod|ipad|android)/);
        if (agentID) {
             alert('você está utilizando um celular');
            $('.nav a').on('click', function(){
                //$('.btn-navbar').click(); //bootstrap 2.x
                $('.navbar-toggle').click() //bootstrap 3.x
            }); 
        } else {
           alert('você está em um computador');
      }
    });
</script>
thanks! thanks for the help
– Harry