I use Codeigniter platform to make a website
I used this .load script to load a different PHP page.
<script>
$(document).ready(function(){
$('#right_timeline_div').load("/bookmark/right_timeline");
});
</script>
It works well on Chrome, but IE8 or 9 have a problem. When I click the refresh button, it is supposed to refresh the value and show new result. However, IE doesn’t refresh the value and keeps showing the first result.
Is there a bug from this script for IE?
IE do not refresh data once it loaded.
Just a blind tip – maybe it could be a caching issue. Try something like:
Adding a random number to your request might push IE to re-read the source thus bypassing the cache. IE is especially prone to caching issues…
NOTE: I dont see what your source is. It seems to be an URL rewrite, maybe you will have to use a different syntax of the source request… This is just to outline what your solution could look like.