Colabora en los FAQ. Ayudarás a la comunidad y esta te lo agradecerá.
$(document).ready(function() { if (window.history && history.pushState) { historyedited = false; $(window).bind('popstate', function(e) { if (historyedited) { loadProducts(location.pathname + location.search); } }); doPager(); }});function doPager() { $('.pager a').click(function(e) { e.preventDefault(); loadProducts($(this).attr('href')); history.pushState(null, null, $(this).attr('href')); historyedited = true; });}function loadProducts(url) { $('#outer').empty().addClass('loading').load(url + ' #inner', function() { $('#outer').removeClass(); doPager(); });}
Tengo que decir que lo hize pero no funcionó, si les interesa podría pasaros el index y demás de la web, la cuestión es que estuve leyendo algo de getscript ya que al hacer funciona ajax despues no se carga el jquery o algo así.Un saludo.
¿Por mera casualidad usas un evento de jQuery?