Two attempts:
window.location = 'http://localhost:8888/#nominate';
window.location.assign('http://localhost:8888/#nominate');
The specification also allows you to directly set the window.location.hash value, but you do not need to do this.
source
share