jQuery modify existing ajax request to clear cache

I need to have no-cached ajax request, because I have problems, when it’s cached. I can’t modify original code, because it’s from plugin and I need stable coded solution to modify it.

I have tried this code:

jQuery.ajaxSetup({
   cache: false,
});

But unfortunatelly, it’s having again cache.
Can anyone give me a tip about it?
Thanks