Friday, October 24, 2014

How to get IP of Client?

<html>
<head>
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script>
        $(document).ready(function () {
            $.ajax({
                url: "//freegeoip.net/json/",
             
                dataType: "text",
                timeout: 2000,
                success: function (data) {

                   var json = $.parseJSON(data);
                     alert(json.ip);
                   
                },
                error: function (data) {
                    alert("error");
                }
             
            });
         
        });

     
    </script>
</head>
<body>
 
</body>
</html>

No comments:

Post a Comment