I am starting to program, I want someone to give me an example to show me how to write JSON data with HTML text
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script> </head> <body> <h1>antar<h2> <script> $.getJSON('http://api.wipmania.com/jsonp?callback=?', function (data) { document.open(); document.write('Latitude: ' + data.latitude + '\nLongitude: ' + data.longitude + '\nCountry: ' + data.address.country); document.close(); }); </script> </body> </html>
source share