when users click certain links on my app it makes ajax requests... What I want to do is on every main click, abort all existing ajax requests either current or pending. Is this possible?
The reason why is requests are getting out of sync. Meaning if a user clicks on a project, which should load tasks. If they then click on another project, the first click's tasks are being populated.
Thanks