up vote 11 down vote favorite
7
share [g+] share [fb]

I would like to use javascript to determine the IP address of a host, as seen from the clients computer. Is it possible?

link|improve this question

67% accept rate
feedback

6 Answers

up vote 5 down vote accepted

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.

link|improve this answer
2  
cgi-bin? That's old school. I like it! – Andrew Hedges Sep 20 '08 at 1:02
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:

<script type="application/javascript">
function getip(json){
  alert(json.ip); // alerts the ip address
}
</script>

<script type="application/javascript" src="http://jsonip.appspot.com/?callback=getip"> </script>

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.

link|improve this answer
I have been using this service for a couple of years now and its been brilliant; but I noticed that its return 503 errors now. Thanks for your help :) – Ben Novakovic Nov 21 '11 at 0:15
feedback

I don't think this is allowed by most browsers for security reasons, in a pure JavaScript context as the question asks.

link|improve this answer
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.

link|improve this answer
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:

<?php
header('content-type: application/json; charset=utf-8');

$data = json_encode($_SERVER['REMOTE_ADDR']);
echo $_GET['callback'] . '(' . $data . ');';
?>

Then the Javascript is exactly the same as before, just not an array:

<script type="application/javascript">
function getip(json){
    alert(json); // alerts the ip address
}
</script>

<script type="application/javascript" src="http://www.anotherdomain.com/file.php?callback=getip"> </script>

Simple as that!

link|improve this answer
feedback

If the client has Java installed, you could do something like this:

ipAddress = java.net.InetAddress.getLocalHost().getHostAddress();

Other than that, you will probably have to use a server side script.

Alex

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.