Following are few steps to Improve Ajax Performance
- First try to Reduce the Number of Ajax Call
- If same call send again, abort the previous call
- If ajax call is executing, and user go for another link, then cancel the previous one.
- Use GET Method, As its Fast but less secure
- Reduce the Amount of data transmitted
a. Only Required parameter in Ajax Request
b. Only Required Response in Ajax Request - Optimize your Server