IE 9 and IE 10 cannot enter text into input text boxes from time to time

后端 未结 11 1831
傲寒
傲寒 2020-12-05 13:59

There is a web page with an iframe inside. Sometimes, Input text box controls, inside the iframe, are locked/ freezed. Users cannot enter text into them. But the text box ca

11条回答
  •  自闭症患者
    2020-12-05 14:24

    I was also suffering from this issue. As William Leung has pointed, IE has a bug with remove Iframe Object from DOM.

    Try the following:

    $(someDivWithIframe).empty().remove();
    

提交回复
热议问题