I'm having a problem with jquery ajax load in internet explorer..
www.funfactz.com
It does not refresh the random fact as it's supposed to. It works in firefox. Try it.
Code is here:
Code:
$(document).ready(function(){
$('#randomfact').load('randomfact.php');
$('#getRandFact').click(function() {
$('#randomfact').fadeOut('slow');
$('#randomfact').load('randomfact.php');
$('#randomfact').fadeIn('slow');
});
});
I've noticed a similar problem on another site where the shoutbox uses the same load code..
It seems to be getting cached or something along those lines
Last edited by Galaxian; 09-12-2008 at 03:06 AM..
|