jqIpLocation is a jQuery Plugin that returns the location of an IP address in JSON format. You can get country, country code, city name, region name, latitude, longitude and zip code information about IP address location.
1- Include the Javascript resources into you pages
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="jqIpLocation.js"></script>
2- Add the Javascript that will returns you IP Location information in JSON format
$.jqIpLocation({
ip : '208.80.152.201',
success: function(location) {
// location.country;
// location.countryCode;
// location.city;
...
}
});
- ip : IP Address that you want to get location info. It's required
- location.country : Country Name
- location.countryCode : Country Code
- location.city : City Name
- location.regionName : Region Name
- location.lat : Latitude
- location.lon : Longitude
- location.zip : Zip Code