Flash video still playing on DIV that is removed using jQuery (IE bug)

后端 未结 13 2220
你的背包
你的背包 2020-12-03 05:57

I have some jQuery tabs one of which holds a flash video. When I play the video in one tab and click to another in FF or Safari the video stops along with the sound, clicki

13条回答
  •  一向
    一向 (楼主)
    2020-12-03 06:03

    Simply do like this to refresh :

    var a = document.getElementById('div_movie').innerHTML;
    document.getElementById('div_movie').innerHTML = a;
    

提交回复
热议问题