Код: Выделить всё
$(function(){
var anchor = document.location.hash;
//this returns me a string value like '#categories'
$('span').click(function(){
$(window).attr('url').replace(anchor,'#food');
//try to change current url.hash '#categories'
//with another string, I stucked here.
});
});
Примечание : Я не хочу решать эту проблему с помощью решения href="#food".
Подробнее здесь: https://stackoverflow.com/questions/115 ... r-response
Мобильная версия