Hay que poner
Código Javascript:
Ver original
function callback(hash) { // do stuff that loads page content based on hash variable } $(document).ready(function() { $.history.init(callback); $("a[@rel='history']").click(function(){ $.history.load(this.href.replace(/^.*#/, '')); return false; }); });
según el link que dejé arriba, luego remplazo a[@rel='history'] por a para que coja todos los links y luego $.history.load(this.href.replace(/^.*#/, '')); por
$.history.loader(this.href.replace(/^.*#m=/, ''));
y no funciona, ¿que puede pasar?