Hi Folks,
I have a simple jquery code that animates some image elements and changes their src using attr('src','url'), and this logic is happening on a timer, when I use Fiddler on the site , I noticed there is a 304 response on all the images on each time interval, commenting out the attr('src') code stoped the 304.
The urls are stored in asp.net hidden fields on the page (input type hidden), and those are loaded once on the page load.
Is there a way to prevent those 304 requests? Looks like it keeps looking for new versions of the images every time, can I stop that behavior?
Thanks in advanced.