Here is a very simple piece of jQuery code:
$(document).ready(function() {
alert('document ready was called');
});
On Firefox (I have tested versions 5 & 6), this code is not executed if you load the page, go to another page on the same site, and then go back to that page - it is only loaded if you refresh the page.
Is there a way to force the JavaScript to load on back/forward navigation? Perhaps via forcing no caching? If so, what would be the performance implications?