Guest User

Untitled

a guest
Feb 14th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <script>
  2. $.ajax({
  3. url: "http://ipv6.getmyip.ninja",
  4. cache: false
  5. })
  6. .done(function( data ) {
  7. $('#lead').html('<p id="lead" class="lead">We\'ve also found this IPv6 address: ' + data + '</p>');
  8. })
  9. .fail(function ( data ) {
  10. $('#lead').html('<p id="lead" class="lead">No IPv6 address was found.</p>');
  11. });
  12. </script>
Add Comment
Please, Sign In to add comment