Изменение # url и получение параметра
window.addEventListener('hashchange', function (e) {
if (location.hash) {
let t = /CategoryID=(\d+)/i.exec(location.hash);
console.log(t && t[1] !== undefined ? t[1] : 'none');
}
});