Showing posts with label GIS. Show all posts
Showing posts with label GIS. Show all posts

Tuesday, April 26, 2016

JSON01

Customers var xmlhttp = new XMLHttpRequest(); var url = "http://hirepete.blogspot.com/2016/04/json01.html"; xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { myFunction(xmlhttp.responseText); } } xmlhttp.open("GET", url, true); xmlhttp.send(); function myFunction(response) { var arr = JSON.parse(response); var i; var out...
Share: