This is my url:
http://example.com/index.php#motto
On page load remove #motto with Javascript.
 
    
     
    
    try this: window.location.hash=""
 
    
    $.fn.urlHash = function()
{
  return window.location.hash.replace('#','');
};
$.urlHash();
