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.
|
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. |
|||||||||||||||||||||
|
|
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
|
|||
|
|
|
You can do an ajax call to hostip.info or a similar service...
As a bonus, geolocalisation information is returned in the same call. |
|||||||
|
|
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. |
|||||||||||
|
|
With using Smart-IP.net Geo-IP API. For example, by using jQuery:
|
|||
|
|
|
include this code in your page : more doc here : http://l2.io |
||||
|
|
|
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
No ajax. Just plain javascripts. :D If you go to http://j.maxmind.com/app/geoip.js you will see that it contains
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
Make that. Put on http://yourdomain.com/yourip.php. Then do
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. |
||||
|
|
|
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: -
Using Javascript
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! |
|||||||||
|
|
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. |
||||
|
|
|
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:
Be sure to make a class called Now, in your javascript, to retrieve the information stored in the label (in this case the client's ip address), you can do this:
Now your variable "ip" equals the ip address. Now you can pass the ip to your API request. |
||||
|
|
|
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. |
|||||||||||||
|
|
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.
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
more information here: http://www.jackiszhp.info/tech/addon.IP.html |
|||
|
|