if someone runs into this,
$('.load-page').on('click', function(event)
{event.preventDefault();
$.ajaxSetup({ cache: false });
$('#content').load($(this).data('location'));
});
setting the cache to false fixed it for me 🙂
CLICK HERE to find out more related problems solutions.