Não estou conseguindo realizar uma requisição pelo app feito em cordova no meu dispositivo android. Nenhum erro é exibido nos alerts, está caindo em fail e a requisição não acontece.
Há algum tipo de permissão de acesso a internet para liberar?
        $.get( "http://cozinhapp.sergiolopes.org/novo-pedido?mesa=19&pedido=Café", function() {
                alert( "success" );
            })
            .done(function() {
                alert( "second success" );
            })
            .fail(function(xhr, status, error) {
                alert(xhr.responseText + ' - ' + status + ' - ' +  error);
            })
            .always(function() {
                alert( "finished" );
            }); 
             
            