Forcing AJAX request to revalidate cache with server, without reloading completely Forcing AJAX request to revalidate cache with server, without reloading completely ajax ajax

Forcing AJAX request to revalidate cache with server, without reloading completely


you can add a url parameter which value base on time to clean cache for just one precise request.

$.ajax({    url:"/questions?nocache="+Date.now(),    "success":function(data){         console.log(data);    }});