i want to how can i prevent new ajax request while browser is fetching previous request ! i create a system contain a table of data like this :

col1 | col2 | col3 data1| data2| data3

when user mouse over data fields I'm used Ajax to retrieve more information about data on mouse over event but if user rapidly move his/her cursor of data column multiple request has been created . how do i prevent that ?

link|improve this question

44% accept rate
feedback

3 Answers

I think you can cache the jquery ajax request object and then abort it later.

var xhr = $.ajax({...});

xhr.abort();
link|improve this answer
The objective is to prevent, not to abort. – dalbaeb Jul 15 '09 at 18:29
feedback

Ben Nadel has a great pattern for handling AJAX errors that includes checking for multiple requests of the same type.

His blog post may help you out.

link|improve this answer
that's good idea but it's dosen't solve my solution :) tanks anyway ! – mehdi Jul 15 '09 at 19:27
feedback

In your case, you need a small delay between the mouseover and the AJAX request. Start by doing a setTimeout for the AJAX request. If another mouseover even is issued during this timeout, clear the timeout and set a new Timeout.

Here is a simplified version (assuming you use the same function cell_onmouseover as a handler for all elements.

var timeoutId = null; //Should be visible to both functions.
function cell_onmouseover()
{
    if (timeoutId)
    {
        clearTimeout(timeoutId);
        timeoutId = null;
    }
    timeoutId = setTimeout(callAJAX, 500); //half a second delay.
}

function callAJAX()
{
    //dostuff
}

[Edit]: You can also enhance this to abort a in-progress AJAX call when users hover on a new element.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.