IE title changes to if the page has a url with '#' , and has flash/swf embedded in it

后端 未结 5 793

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

5条回答
  •  鱼传尺愫
    2021-01-31 10:21

    It is IE bug:

    • http://bugs.adobe.com/jira/browse/FP-240 (includes couple of workarounds)
    • http://www.mail-archive.com/discuss@jquery.com/msg14509.html
    • http://code.google.com/p/swfobject/issues/detail?id=293

    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.

提交回复
热议问题