I have some Javascript JQuery code that does an Ajax call to the server every 5 mins, it\'s to keep the server session alive and keep the user logged in. I\'m using $.
$.
You should just add: timeout: , somewhere within $.ajax({}). Also, cache: false, might help in a few scenarios.
timeout: ,
$.ajax({})
cache: false,
$.ajax is well documented, you should check options there, might find something useful.
Good luck!