You can easily prevent execution of ajax request with a flag. When you make an Ajax call the flag is set to 1 (if its allready to 1 you don't launch request)
In the callback you just turn back the flag to 0 and you can perform a quick test to for comparing the last search made width the actual search parameter (if different you force a new call else it's done) 'Hope that's help you On Aug 22, 8:59 am, "Tamm Sjödin" <[EMAIL PROTECTED]> wrote: > It's a search function that I trigger on key up. It doesn't work bad it's > just a risk of previous requests finishing after the last one, meaning the > content of the result box being replaced again but by the wrong stuff. > Stopping all ajax calls was just one of my solutions, one that seemed easy > to implement if there was a way to do so. since no one seems very confident > in that I'm just look for some other way and assume this cannot be done.