Saved Bookmarks
| 1. |
What is Cache false in Ajax call? |
|
Answer» The cache: FALSE is used by developers to prevent all future AJAX REQUESTS from being cached, REGARDLESS of which jQuery METHOD they USE. We can use $.ajaxSetup({cache:false}); to apply the technique for all AJAX functions. |
|