Hello ,
I have implemented the Jail in my mobile Web App .
The images are loading from scratch all the time . Like in Index page if I refresh the page two times it loads the images again . Instead of getting it right from the cache .
So it there a way I can fix this problem
I am using a basic call only
<script>
$(document).on('pageinit','#outerPage',function(){
$(function(){
$('img.lazy').jail({
effect: 'fadeIn',
speed : 500
});
});
});
</script>
Thanks
Hello ,
I have implemented the Jail in my mobile Web App .
The images are loading from scratch all the time . Like in Index page if I refresh the page two times it loads the images again . Instead of getting it right from the cache .
So it there a way I can fix this problem
<script> $(document).on('pageinit','#outerPage',function(){ $(function(){ $('img.lazy').jail({ effect: 'fadeIn', speed : 500 }); }); }); </script>I am using a basic call only
Thanks