Set cache: false in jQuery.get call using Below Method
use new Date().getTime(),
which will avoid collisions unless you have multiple requests happening within the same millisecond.
Or
The following will prevent all future AJAX requests from being cached, regardless of which jQuery method you use ($.get, $.ajax, etc.)
$.ajaxSetup({ cache: false });