Skip to content

Author: admin@master

Abort new AJAX request before completing the previous one

I have a function that runs an AJAX call on the change of an input. But, there is a chance that the function will be fired again before the previous ajax call has completed. My question is, how would I abort the previous AJAX call before starting a new one? Without using a global variable. (See answer to a si…

How do you fetch and parse xml in node.js?

How do you fetch an xml from online with node.js and parse it into a javascript object? I’ve been searching the npm register but only found how to parse the xml-string, not how to fetch it. Answer To fetch an online resource, you can use http.get(). The data can be loaded into memory, or directly sent t…