Consider I have 4 option like
- display Name
- display Age
- display Address
- display PhoneNo
On clicking of each option i am making an ajax request and pulling the appropriate details and displaying it. but the problem is for an instance i click on the display Name
option the ajax request is sent immediately i click on the display Age
option this triggers an ajax request and displays the data when the first request's response comes back it overwrites the data of the second request, So can i stop the previous ajax request(s). Thanks.