It could be a caching issue. Try setting the cache
option to false, and/or using a cache breaker (which is a random number, or timestamp, passed along with the URL):
$('.nextQuestion').live('click', function(e){
$.ajax({
type:'GET',
cache: false,
url:'/includes/quiz.php?' + Math.round(new Date().getTime() / 1000),
success:function(data){
$('#game_response').replaceWith(data);
}
});
return false;
});
You could also try using a POST request instead.
karim79
2010-08-12 17:17:12