I would like to use javascript to determine the IP address of a host, as seen from the clients computer. Is it possible?
|
feedback
|
|
There's no notion of hosts or ip-addresses in the javascript standard library. So you'll have to access some external service to look up hostnames for you. I recommend hosting a cgi-bin which looks up the ip-address of a hostname and access that via javascript. | |||||
feedback
|
|
Edit: This question gave me an itch, so I put up a JSONP webservice on Google App Engine that returns the clients ip address. Usage:
Yay, no server proxies needed. Pure JS can't. If you have a server script under the same domain that prints it out you could send a XMLHttpRequest to read it. | ||||
feedback
|
|
I don't think this is allowed by most browsers for security reasons, in a pure JavaScript context as the question asks. | ||||
|
feedback
|
|
Doing this would require to break the browser sandbox. Try to let your server do the lookup and request that from the client side via XmlHttp. | |||
|
feedback
|
|
Very old question, but I stumbled across it while searching myself. The hosted JSONP version works like a charm, but it seems it goes over its resources during night time most days (Eastern Time), so I had to create my own version. This is how I accomplished it with PHP:
Then the Javascript is exactly the same as before, just not an array:
Simple as that! | |||
|
feedback
|
|
If the client has Java installed, you could do something like this:
Other than that, you will probably have to use a server side script. Alex | |||
|
feedback
|