[wd_asp elements=’search’ ratio=’100%’ id=1]

Stop cache on .load of ajax request

23rd March 2017

Jquery - Ajax

jquery icon

Just add the code as it is, before any .load happens and every time .load is executed it will get a new set of data using .load, without cache.$.ajaxSetup ({
// Disable caching of AJAX responses
cache: false
});