I'm using JQuery to implement pagination in my rails app, and have run into a problem where sometimes rails fails to render the page content when I hit back in my browser, and instead it dumps the raw Javascript into my browser window. Here's a quick look at what I'm using:
pagination.js:
if (history && history.pushState) {
$(function () {
$('.pagination a').live("click", function () {
$.ajax({url: this.href, dataType: "script", cache: true});
history.pushState(null, document.title, this.href);
$("html, body").animate({ scrollTop: 0 }, 300);
return false;
});
$(window).bind("popstate", function() {
$.ajax({url: location.href, dataType: "script", cache: true});
});
});
}
And in my view, index.js.erb:
$("#products").html("<%= escape_javascript(render("products")) %>");
It works some of the time, but often when hitting the back button the JS is dumped into my browser window without being evaluated/rendered. It looks like this (in my browser):
$("#products").html("<table class=\"table table-striped\">\n<thead>\n<tr>\n<th>Products
...etc. I'm not sure exactly what is failing. Any ideas?