Advertisement
TD_27

HTML - IP Checker

Jul 6th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 KB | None | 0 0
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  2. <script>
  3. function lol(){
  4. $.getJSON( "http://freegeoip.net/json/", function( data ) {
  5.   var items = [];
  6.   $.each( data, function( key, val ) {
  7.     items.push( "<li id='" + key + "'>" + val + "</li>" );
  8.   });
  9.  
  10.   $( "<ul/>", {
  11.     "class": "my-new-list",
  12.     html: items.join( "" )
  13.   }).appendTo( "body" );
  14. });
  15. }
  16. </script>
  17. <button onclick="lol();">klik</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement