stylo~ schrieb:
All I'm saying is that jQuery supports an
ifModified option for Ajax requests and that I'm not sure if that option
still works as expected with an automatic time stamp added to each request.
I see. I would assume not bc a different url.
Btw, I wouldn't want an automatic stamp added either. Just an option.
Well, we beat that horse into the ground :-)
I agree, that an option would be nice.
You could also write your own little wrapper for that, if you're
desperatly in need for that right now:
jQuery.ajaxBypassCache = function(properties) {
if (properties.type && properties.type == 'GET') {
properties.url += (properties.url.indexOf('?') > 0 ? '&' : '?')
+ 'stamp=' + new Date().getTime();
}
return jQuery.ajax(properties);
};
-- Klaus