javascript jquery window.location

javascript - posible reemplazar window.location.hash?



jquery (1)

Me pregunto si es posible cambiar el hash en window.location.hash y reemplazarlo por ''this.id''. ¿O necesitaría cambiar la window.location completa?


Sí tu puedes. Hago algo similar en uno de mis sitios, aunque con href lugar de id , pero id también funciona. Un ejemplo rápido:

$(''a[id]'').click(function(e) { // This will change the URL fragment. The change is reflected // on your browser''s address bar as well window.location.hash = this.id; e.preventDefault(); });