Guides
Last Updated Jan 26, 2021

How to get an IP address using jQuery

Emma Jagger

Table of Contents:

Get your free
API
key now
4.8 from 1,863 votes
See why the best developers build on Abstract
START FOR FREE
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
No credit card required
Get your free
IP Geolocation API
key now
4.8 from 1,863 votes
See why the best developers build on Abstract
START FOR FREE
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
No credit card required

There are many applications for which a developer needs to collect information about a web page's visitor. Whether it is to personalize content, identify individuals, secure access to resources, or collect statistics, it becomes necessary to determine visitors' IP addresses. If you just want to identify yours, use our tool to see what is your IP address and location.

jQuery does not offer a feature to obtain the visitor's IP address

jQuery, a popular JavaScript library, is confined to run inside the visitor's web browser. Any script will therefore be limited to a security context that is necessary for browsing the Internet. Consequently, JavaScript cannot access client computer resources such as network information. jQuery is obviously subject to the same limitations.

Let’s send your first free
API
IP Geolocation API
call
See why the best developers build on Abstract
Get your free api

How to get a visitor's IP in jQuery

Since there is no direct method to obtain the visitor's IP address, it will be necessary to query a server that will return the client's address. There are many free services available, such as https://api.myip.com, which returns the IP address in JSON format.

On the jQuery side, it is, therefore, necessary to establish an AJAX connection to the myip.com server, which can be written as follows:


$.getJSON("https://api.myip.com", function(data) {
  // Display the visitor's IP in the console
  console.log(data.ip);
});

By looking more precisely at the server's answer, it is possible to see that it contains some information about the country corresponding to the client's IP address:


$.getJSON("https://api.myip.com", function(data) {
  // Display the visitor's country in the console
  console.log(data.country);
});

Is the visitor's IP address always accurate?

It happens very often that several users share an IP address. This is the case for people who connect to the Internet via a VPN service to protect their identity or circumvent restrictions based on IP address. On the server-side, all these people will be seen with the same IP address. This is also the case for a jQuery script.

For a web page, this can have unexpected consequences. For example, if a jQuery script relies solely on the IP address to collect statistics, the inaccuracy will reflect the statistics.

It becomes necessary to have a way to detect if the visitor's IP address corresponds to that of a VPN.

How to detect if an IP address is that of a VPN service?

IP addresses of VPN services can be discovered by different means. To take a well-known example, NordVPN exposes its list or servers at https://api.nordvpn.com/server. For information, it is this address that their clients use to update their internet server list.

A jQuery script would have to retrieve the JSON data from the server list, then collect all IP addresses, and finally check if the visitor's address is part of this list. Here is how to get a list of all NordVPN servers addresses:


// WARNING: this script could be quite long to execute
$.getJSON("https://api.nordvpn.com/server", function(data) {
  var addresses = $.map(data, (d) => d.ip_address);
  // Display all NordVPN addresses in the console
  console.log(addresses);
});

This works but forces the jQuery script to make a second AJAX request, which is quite slow considering the long list of NordVPN servers. It would then be a good idea to build this list on the webserver and send it to the pages as a JavaScript table to save an AJAX connection. On the other hand, it would increase the size of the pages.

Once this is done for NordVPN, it must also be implemented for all other existing VPN services to ensure that your script correctly detects visitors behind a VPN.

The simplest solution to find the IP address of a visitor in jQuery

The solutions listed above work but require a lot of effort to implement and maintain.

The easiest solution is to use a free service that allows both to get the visitor's IP address in jQuery and detect if this visitor is using a VPN. This service is called Abstract IP Geolocation. Here is how to use it:


let api_key = "the_key_you_get_from_your_account";
$.getJSON("https://ipgeolocation.abstractapi.com/v1/?api_key=" + api_key, function(data) {
  // Display the visitor's IP in the console
  console.log(data.ip_address);
  // Indicate if the visitor is using a VPN
  console.log(data.security.is_vpn);
})

4.5/5 stars (11 votes)

Emma Jagger
Engineer, maker, Google alumna, CMU grad
Get your free
IP Geolocation API
API
key now
Get and geolocate IP addresses with Abstract. jQuery samples and libraries included!
get started for free

Related Articles

Get your free
API
IP Geolocation API
key now
4.8 from 1,863 votes
See why the best developers build on Abstract
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
No credit card required