The issue is, if IE (6.0+) , has flash content embedded in it, and the url of the page has a # somewhere in it, then when the flash content loads ,or if the user interacts with
//some changes if (browser.ie < 10) { document.attachEvent('onpropertychange', function(evt) { if (evt.propertyName === 'title' && document.title) { setTimeout(function() { var b=document.title.indexOf('#'); if(b!==-1){ document.title = document.title.slice(0,b); } }, 1); } }); }