I have this small snippet of code which allows me to retrieve the public IP address
$.get("http://ipinfo.io", function (response) {
alert(response.ip);
}, "jsonp");
I would like to be able to get the actual IP v 4 address of the machine the client is using much similar to that displayed in command prompt after entering the ipconfig command