How to find client IP Address using javascript & jquery
Designer Page Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
   
window.onload = function () {
        var script = document.createElement("script");
       
script.type = "text/javascript";
       
script.src = "http://jsonip.appspot.com/?callback=DisplayIP";
       
document.getElementsByTagName("head")[0].appendChild(script);
    };
    function DisplayIP(response) {
       
document.getElementById("ipaddress").innerHTML
= "Your IP Address is " +
response.ip;
    }
</script>
</head>
<body>
    <form>
        <span id = "ipaddress"></span>
    </form>
</body>
</html>
No comments:
Post a Comment