I'm using the AJAX method jQuery.Get() because it's really simple to use. I use this to load pages into a div. But when I change this page that is being loaded and click Refresh. It won't be updated. The only solution is to exit the browser and reopen it and go to the website again. This is really anoying and I wonder if there is a solution to this.
More info on the method: http://api.jquery.com/jQuery.get/
Code used:
function pagina_ophalen(pagina){
$.get('paginas/' + pagina + '.html', function(data){
$('#inlaadcontent').css('display','none');
$('#inlaadcontent').html(data);
$('#inlaadcontent').fadeIn("slow");
});
}
Thank you very much. Dylan