The page I load with .get using the following code is being cached by the browser. How do I force the page to be reloaded each time it is requested?
$('.app-ajax-page-content').click(function(){
var $button = $(this);
var url = $button.attr('href');
$.get(url, '', function (data) {
var $content = $(data).find('.col');
var html_content = $content.html();
var lightbox =
'<div id="lightbox-content" class="inapp">' +
'<div class="lightbox-content">' +
html_content +
'</div>
</div>';
});
return false;
});