I have URL like: http://example.com#something
, how do I remove #something
, without causing the page to refresh?
I attempted the following solution:
window.location.hash="";
However, this doesn’t remove the hash symbol #
from the URL.
I have URL like: http://example.com#something
, how do I remove #something
, without causing the page to refresh?
I attempted the following solution:
window.location.hash="";
However, this doesn’t remove the hash symbol #
from the URL.