ハッシュされた URL (document.location.hash) を replace メソッドで変更しようとしていますが、うまくいきません。
$(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.
});
});
ページを変更/更新したくありません。応答なしで URL を置き換えたいだけです。
注: href="#food" ソリューションでこれを解決したくありません。