shdocvw.internetexplorer

How to make SHDocVw.InternetExplorer fire events that get caught with JS addEventListener?

拈花ヽ惹草 提交于 2021-02-10 04:15:54
问题 The following problems: I need to simulate a double-click on a div element. I need to use/handle MS Internet Explorer 11. I cannot change the source code of the target site. My solution so far: I use C# and SHDocVw.InternetExplorer and mshtml I can fire "click" events al right, they show up in all handlers When trying to simulate the double-click: the "ondoubleclick" event gets triggered. the el.addEventListener('dblclick', handler); does NOT get triggered To reduce the complexity of the

How to make SHDocVw.InternetExplorer fire events that get caught with JS addEventListener?

风格不统一 提交于 2021-02-10 04:14:52
问题 The following problems: I need to simulate a double-click on a div element. I need to use/handle MS Internet Explorer 11. I cannot change the source code of the target site. My solution so far: I use C# and SHDocVw.InternetExplorer and mshtml I can fire "click" events al right, they show up in all handlers When trying to simulate the double-click: the "ondoubleclick" event gets triggered. the el.addEventListener('dblclick', handler); does NOT get triggered To reduce the complexity of the

How to make SHDocVw.InternetExplorer fire events that get caught with JS addEventListener?

天涯浪子 提交于 2021-02-10 04:13:32
问题 The following problems: I need to simulate a double-click on a div element. I need to use/handle MS Internet Explorer 11. I cannot change the source code of the target site. My solution so far: I use C# and SHDocVw.InternetExplorer and mshtml I can fire "click" events al right, they show up in all handlers When trying to simulate the double-click: the "ondoubleclick" event gets triggered. the el.addEventListener('dblclick', handler); does NOT get triggered To reduce the complexity of the