I have the following code, however im having a problem getting window.location to work
$('.test_container a').click(function() { $.ajax({ url: $(link).attr('href'), type: 'GET', dataType: 'json', beforeSend: function() { $('#lightbox').show(); }, success: function(data) { $('#lightbox').hide(); window.location(data); } }); return false; }); If window.location.replace is used instead it does work, however this then doesnt allow the brwser back buttons to work.
Does anyone know of any solution?
Thanks