Saludos y de de antemano gracias
¿Cómo puedo agregar el hashtag a una URL?
Ejemplo: http://www.example.com/fotos/fiesta/
a http://www.example.com/#/fotos/fiesta/
Agregando "#" después del dominio
Estoy utilizando:
Código:
var url = document.location.hash;
var anchor = url.split('#');
if (anchor.length == 1){
var redirect = 'http://'+document.location.host+'/#'+document.location.pathname;
window.location = redirect
}
y quiero hacer lo mismo pero sin el redirect
¿Alguien me puede ayudar?