xenophobia Posted July 24, 2009 Share Posted July 24, 2009 I had a single instance of XHR object. Everytime I clicked a button, this XHR object will send the request to server to get some info. What I want is, whenever I clicked, if there is some unfinished transaction in the previous one will be aborted and start with the new one. How am I going to do that? Better picture: // Get the xmlHttpRequest object. var xhr = init_object(); if(isLoading) { xhr.abort(); } xhr.open('new.php', ...blar blar...); xhr.send(null); Quote Link to comment Share on other sites More sharing options...
xenophobia Posted July 26, 2009 Author Share Posted July 26, 2009 Maybe I should ask in this way: Say currently, request A is made to server. While it is loading, a user click on another button, request B is made. So I want to abort the request A and made a new request to server (request B). How do I do that?? Quote Link to comment Share on other sites More sharing options...
xenophobia Posted July 26, 2009 Author Share Posted July 26, 2009 Is actually not the ajax problem. =[ I've found that is actually my server's side scripting problem. Problem solved. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.