My url generates like this: only shows in ie9
http://myurl.com/#/categories/posts
how do I remove # from url and make it like http://myurl.com/categories/posts
on rest of my pages? thanks.
can i use like this? how can I detect # cause front page has no #.
if ($.browser.msie && parseInt($.browser.version, 10) === 9 && window.location.href.indexOf("#"))
{
document.location.href = String( document.location.href ).replace( /#/, "" );
}
to remove #/ used .replace( /#//, "" );
as mentioned Kevin B
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…