KeyboardEvent.isComposing
The KeyboardEvent.isComposing
read-only property returns a boolean value indicating if the event is fired within a composition session, i.e. after compositionstart
and before compositionend
.
Syntax
var bool = event.isComposing;
Example
var kbdEvent = new KeyboardEvent("syntheticKey", false); console.log(kbdEvent.isComposing); // return false
Specifications
Specification |
---|
UI Events # dom-keyboardevent-iscomposing |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
isComposing |
56 |
79 |
31 |
No |
43 |
10.1 |
56 |
56 |
31 |
43 |
10.3 |
6.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/isComposing