InterviewSolution
Saved Bookmarks
| 1. |
Describe the use of Cache false in AJAX call. |
|
Answer» AJAX requests by default, ISSUE all requests. But browsers may send responses with the HELP of CACHE. For preventing such a scenario, developers can set the cache to false. We can apply this concept to prevent CACHING of all future AJAX requests, IRRESPECTIVE of jQuery method used. |
|