I generate a hash with this code but I can not remove it.
$('#terror').on('click', function() {
window.location.hash='/terror';
});
And I get this URL:
http://localhost:8080/#/terror
I want to remove it using this code:
$('#cTodos').on('click', function() {
window.location.hash ='';
});
And I get this URL:
http://localhost:8080/#
I need to leave it like this:
http://localhost:8080