Skip to content

Instantly share code, notes, and snippets.

@jonathanwork
Created May 4, 2017 04:43
Show Gist options
  • Save jonathanwork/83f409c5319144e181caf19c9f312de7 to your computer and use it in GitHub Desktop.
Save jonathanwork/83f409c5319144e181caf19c9f312de7 to your computer and use it in GitHub Desktop.
getting ip address of the current page
$.getJSON( "//freegeoip.net/json/" + window.location.host + "?callback=?", function(data) {
console.warn('Fetching JSON data...');
// Log output to console
console.info(JSON.stringify(data, null, 2));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment