pitchcontrol
1/23/2018 - 10:19 AM

hashchange

Изменение # 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');
                        }
                    });