i am using Quake Slider in part of my website.this plugin is creating div(s) from images for making transition.the problem is when div(s) get created , background-image property of them changing according to current image src attribute, and causing the browser to reload image from the server (and strangely not from cache).can anyone give me the point how to change this plugin to not reload image when jquery css('background-image') get called?thanks for your concern.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
| show 4 more comments |
Expiration and caching response headersBrowsers reload content based on their last accessed expiration and caching headers sent from the web server. So if images expired in the past, browser will have to reload them regardless of whether they've just been loaded. As you're using IIS I suggest you read this question that links to MS resource with description of configuration elements to control this behaviour. When you configure your server to not expire static content you can still convince browser to reload some static content by adding a random value along with your request i.e.
|
|||
|
|
Expires Thu Jan 01 1970 03:30:00 GMT+0330 (Iran Standard Time)– Behnam Esmaili Jan 25 at 10:04