You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
isComposing in onInput is true even when it is the finish of the IME composition / No onInput whose isComposing is false is triggered when you complete IME composition #394
The following process doesn't work in Chromium. Works in Firefox as intended. Which behavior is correct?
document.addEventListener("DOMContentLoaded",()=>{consttextArea=document.querySelector("textarea");textArea.addEventListener("input",(event)=>{if(event.isComposing){// skip while IME input because it's half-bakedreturn;}// your process here});});