Surfingkeys
Surfingkeys copied to clipboard
Failed to operate DOM in insert mode
Prelude
-
Could you find answer in below documents? No
-
Have you searched your problem in issues?
Error details
SurfingKeys: 1.12 Browser: <Microsoft Edge 110.0.1587.46 ><win 11>
Context
I want to use the following map to trigger the specified DOM item clicked. but failed while it works when execute the same code in console by pressing F12, why? var a = document.getElementsByClassName("icon aui-icon aui-icon-small aui-iconfont-editor-list-number")
imapkey('<Alt-n>', "#confluence list-number", function() {
alert("xxx1")
var a = document.getElementsByClassName("icon aui-icon aui-icon-small aui-iconfont-editor-list-number")
alert(a)
alert(a.length)
if(a.length) {
alert("xxx2")
a[0].click();
}
});