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
It is IE bug:
If you are using sammy's title method you could delay the execution a bit to make it behave on IE.
setTimeout(function() {
context.title('Some title');
}, 1000);
This won't solve it really, but I have noticed that a little delay helps IE sometimes.