How is it possible to prevent IE from caching data with jaydata requests?
I've read this post: How to prevent a jQuery Ajax request from caching in Internet Explorer? and this article: http://www.greenvilleweb.us/how-to-web-design/problem-with-ie-9-caching-ajax-get-request/
the solution I found with jQuery is to set {cache:false}. But How can I do it with a jaydata request?
$data.initService(url)
.then(function(db) {
db.table ....
Any suggestion is greatly appreciated.