I have enabled caching of images
When i load the web page all the images are getting cached and are getting loaded from the cache with status 200 and status is from cache and size is 0
But all the images that are binded using knockout are not getting loaded from the cache and the status for those images are 304 - not modified and size is xxxkb
Below is the code i use
ko.applyBindingsToNode(element, {
attr: { src: renderImage(value) }
});
in the render Image function i am attaching sharepoint rendering and returning the image url with the rendering id
It is used in other places as well, but they are getting cached
How can i force the browser to load the image from cache in this scenario?