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.
| |||||||||||||||||
feedback
|
|
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
| |||
|
feedback
|
|
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. | |||||||||
feedback
|
|
You can do an ajax call to hostip.info or a similar service...
As a bonus, geolocalisation information is returned in the same call. | |||
feedback
|
|
With using Smart-IP.net Geo-IP API. For example, by using jQuery:
| |||
|
feedback
|
|
Use this API, you can detect IP, country, city and timezone by Javascript. http://www.easyjquery.com/detect-get-clients-ip-address-country-using-javascript-php/ | |||
feedback
|
|
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. | ||||
|
feedback
|
|
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! | |||||||
feedback
|
|
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. | |||||||
feedback
|
|
I Know its old to answer but might help someone who is looking it in future I Think This Link will Help you Its Easy :)...!! | |||||||||
feedback
|