This is my url:
http://example.com/index.php#motto
On page load remove #motto with Javascript.
try this: window.location.hash=""
history.pushState("", document.title, window.location.pathname); but it is not cross browser, in ie8 or ie9 i don't think it will work$.fn.urlHash = function()
{
return window.location.hash.replace('#','');
};
$.urlHash();