1 2 if (req.readyState == 4) { 3 4 if (req.status == 200) { 5 6 // ...processing statements go here... 7 8 response = req.responseXML; 9 10 results = response.getElementsByTagName(name); 11 12 } 13 }
You need to create an account or log in to post comments to this site.