Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to somehow pull the clients IP address using pure javascript, no server side code, not even SSI.

Any ideas?

I'm not against using a free 3rd party script, if someone can suggest one. This is an emergency stop gap until we can deploy new code.

share|improve this question
3  
Do you mean you need the IP address of the client system? This is largely irrelevant with the widespread adoption of NATs. The practical usage of such information is pretty limited in today's world. Can you give more information about the use of the data? – benc Jul 17 '09 at 5:54
1  
Agree with @benc - there is almost no conceivable reason for you to want the client's IP, client-side. – meagar Sep 30 '10 at 19:40
7  
@meagar - what about if you wanted to pre-fill form fields (such as country) using a geoip lookup? – adam Jun 15 '11 at 8:55
2  
@meagar - Some web APIs require that you pass the client's IP when making the API call. – Will Peavy Dec 26 '11 at 3:24
4  
@meagar - I've worked with APIs that require the client IP to be sent as a parameter of a web service request. Whether this makes sense to you or not is irrelevant. If you're working with an API like this, and you don't pass a required parameter like IP, then you don't get the response you're looking for. – Will Peavy Mar 9 '12 at 17:17
show 4 more comments

12 Answers

You can, relaying it via server side with JSONP

And while googling to find one, found it here on SO http://stackoverflow.com/questions/102605/can-i-lookup-the-ip-address-of-a-hostname-from-javascript

<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>
share|improve this answer

You can do an ajax call to hostip.info or a similar service...

function myIP() {
    if (window.XMLHttpRequest) xmlhttp = new XMLHttpRequest();
    else xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");

    xmlhttp.open("GET","http://api.hostip.info/get_html.php",false);
    xmlhttp.send();

    hostipInfo = xmlhttp.responseText.split("\n");

    for (i=0; hostipInfo.length >= i; i++) {
        ipAddress = hostipInfo[i].split(":");
        if ( ipAddress[0] == "IP" ) return ipAddress[1];
    }

    return false;
}

As a bonus, geolocalisation information is returned in the same call.

share|improve this answer
1  
You can also get a JSON representation using api.hostip.info/get_json.php, then parse the JSON with the browser function, jQuery or Prototype. – Brad Folkens Apr 26 '12 at 17:44
is there any request limit on "api.hostip.info/get_html.php"; ? where can I see this api details – Navin Leon Jun 20 '12 at 7:29

You can't. And even if you could, it would be the address of the machine, which is useless if they're communicating via a proxy or NAT. Find a way to get it server-side.

share|improve this answer
1  
I think you can: hashemian.com/tools/visitor-IP.htm – Oscar Mederos Mar 24 '11 at 4:16
10  
@oscar: that appears to be the same technique (JSONP-returned server-visible IP) that chad mentioned in his answer. Which doesn't match the OP's requirement of "no server-side code". But yes, that is one way to accomplish it if you ignore that requirement. – Shog9 Mar 24 '11 at 4:40
Exactly :) – Oscar Mederos Mar 24 '11 at 4:47

With using Smart-IP.net Geo-IP API. For example, by using jQuery:

$(document).ready( function() {
    $.getJSON( "http://smart-ip.net/geoip-json?callback=?",
        function(data){
            alert( data.host);
        }
    );
});
share|improve this answer

include this code in your page : <script type="text/javascript" src="http://l2.io/ip.js"></script>

more doc here : http://l2.io

share|improve this answer

I would say Chad and Malta has great answer. However, theirs are complicated. So I suggest this code that I found from ads by country plugin

<script>
<script language="javascript" src="http://j.maxmind.com/app/geoip.js"></script>
<script language="javascript">
mmjsCountryCode = geoip_country_code();
mmjsCountryName = geoip_country_name();

</script>

No ajax. Just plain javascripts. :D

If you go to http://j.maxmind.com/app/geoip.js you will see that it contains

function geoip_country_code() { return 'ID'; }
function geoip_country_name() { return 'Indonesia'; }
function geoip_city()         { return 'Jakarta'; }
function geoip_region()       { return '04'; }
function geoip_region_name()  { return 'Jakarta Raya'; }
function geoip_latitude()     { return '-6.1744'; }
function geoip_longitude()    { return '106.8294'; }
function geoip_postal_code()  { return ''; }
function geoip_area_code()    { return ''; }
function geoip_metro_code()   { return ''; }

It doesn't really answer the question yet because

http://j.maxmind.com/app/geoip.js doesn't contain the IP (although I bet it uses the IP to get the country).

But it's so easy to make a PhP script that pop something like

function visitorsIP()   { return '123.123.123.123'; }

Make that. Put on http://yourdomain.com/yourip.php.

Then do

<script language="javascript" src="http://yourdomain.com/yourip.php"></script>

The question specifically mention NOT to use third party script. There is no other way. Javascript cannot know your IP. But other servers that can be accessed through javascript can which work just as well with no issue.

share|improve this answer

Well, I am digressing from the question, but I had a similar need today and though I couldn't find the ID from the client using Javascript, I did the following.

On the server side: -

<div style="display:none;visibility:hidden" id="uip"><%= Request.UserHostAddress %></div>

Using Javascript

var ip = $get("uip").innerHTML;

I am using ASP.Net Ajax, but you can use getElementById instead of $get().

What's happening is, I've got a hidden div element on the page with the user's IP rendered from the server. Than in Javascript I just load that value.

This might be helpful to some people with a similar requirement like yours (like me while I hadn't figure this out).

Cheers!

share|improve this answer
2  
-1: The OP specifically mentions "no server side code", yet you use some C#. – Bruno Reis May 7 '11 at 8:36
2  
but cool. this is a nice hack. – seanlinmt Jan 1 '12 at 11:41

There isn't really a reliable way to get the client computer's IP address.

This goes through some of the possibilities. The code that uses Java will break if the user has multiple interfaces.

http://nanoagent.blogspot.com/2006/09/how-to-find-evaluate-remoteaddrclients.html

From looking at the other answers here it sounds like you may want to get the client's public IP address, which is probably the address of the router they're using to connect to the internet. A lot of the other answers here talk about that. I would recommend creating and hosting your own server side page for receiving the request and responding with the IP address instead of depending on someone else's service that may or may not continue to work.

share|improve this answer

I'm going to offer a method that I use a lot when I want to store information in the html page, and want my javascript to read information without actually having to pass parameters to the javascript. This is especially useful when your script is referenced externally, rather than inline.

It doesn't meet the criterion of "no server side script", however. But if you can include server side scripting in your html, do this:

Make hidden label elements at the bottom of your html page, just above the end body tag.

Your label will look like this:

<label id="ip" class="hiddenlabel"><?php echo $_SERVER['REMOTE_ADDR']; ?></label>

Be sure to make a class called hiddenlabel and set the visibility:hidden so no one actually sees the label. You can store lots of things this way, in hidden labels.

Now, in your javascript, to retrieve the information stored in the label (in this case the client's ip address), you can do this:

var ip = document.getElementById("ip").innerHTML;

Now your variable "ip" equals the ip address. Now you can pass the ip to your API request.

share|improve this answer

Not possible in general unless you use some kind of external service.

share|improve this answer

I'm no javascript guru, but if its possible you could open an iframe with http://www.whatismyip.com/automation/n09230945.asp as the source and read the content of the frame.

Edit: this wont work because of the cross domain security.

share|improve this answer
1  
May want to try this before accepting. I thought this would result in an "access denied" error due to violating cross-domain scripting rules. – Triptych Dec 24 '08 at 18:42
Not in an iframe. The problem is that you will have to pass the variables back and forth between the iframe and your main document. The IFrame won't be able to get an info from the parent document so make sure you are driving it the other way around. – Jason Jackson Dec 24 '08 at 19:10
Why this one get downvoted? +!. Good idea. Somehwere down there is a better answer but this one is good. – Jim Thio Sep 7 '12 at 8:31
@JimThio because as noted in the answer, it won't work because of cross-domain security restrictions. – UnkwnTech Sep 8 '12 at 1:01
oh don't use iframe then. Use my solution below. – Jim Thio Sep 9 '12 at 8:43

All the above answers have a server part, not pure client part. This should be provided by the web browser. At present, no web browser support this.

However, with this addon for firefox: https://addons.mozilla.org/en-US/firefox/addon/ip-address/ You will have to ask your users to install this addon. (it's good from me, a 3rd party).

you can test whether the user has installed it.

var installed=window.IP!==undefined;

you can get it with javascript, if it is installed, then var ip=IP.getClient(); var IPclient=ip.IP; //while ip.url is the url

ip=IP.getServer();
var IPserver=ip.IP;
var portServer=ip.port;
//while ip.url is the url

//or you can use IP.getBoth();

more information here: http://www.jackiszhp.info/tech/addon.IP.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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