アクションを起こしたらハッシュタグを削除

//アクションを起こしたらハッシュタグを削除
 document.getElementById("regions").onclick = function(){
     var hashString = location.hash.substr(1);
     history.replaceState('', document.title, window.location.pathname);
 }