Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

XMLHttpRequest process request (See related posts)


   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.


Click here to browse all 5502 code snippets

Related Posts