Request ajax with user IP

2

    
asked by anonymous 22.09.2015 / 06:34

1 answer

0

Here's an example:

$('#enviar').click(function () {
    $.ajax({
        method: "GET",
        url: "http://ip-api.com/json"
    }).success(function (msg) {

        $.ajax({
            method: "POST",
            url: "http://posttestserver.com/post.php",
            data: {
                ip: msg.query
            }
        }).success(function (e) {
            $('#url')[0].innerHTML = e;
            $('#ip')[0].innerHTML = msg.query;
            alert('Salvo com sucesso.');
        }).error(function (e) {
            alert('Ocorreu um erro. Mensagem: ' + e);
        });


    }).error(function (msg) {
        alert('Erro: ' + msg);
    });
});

Click here to open an example in JSFiddle.

    
22.09.2015 / 14:12