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); Link to comment https://forums.phpfreaks.com/topic/167285-solved-single-instance-multiple-request/ 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?? Link to comment https://forums.phpfreaks.com/topic/167285-solved-single-instance-multiple-request/#findComment-883021 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. Link to comment https://forums.phpfreaks.com/topic/167285-solved-single-instance-multiple-request/#findComment-883055 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.