The selectstart
event of the Selection API is fired when a user starts a new selection.
If the event is canceled, the selection is not changed.
document.addEventListener("selectstart", function() { console.log('Selection started'); }, false);
The selectstart
event implements the Event
interface. You can use the properties and methods defined on this interface.
Specification | Status | Comment |
---|---|---|
Selection API The definition of 'selectstart' in that specification. | Working Draft | Initial definition. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | ? | (Yes) | 52 (52) | ? | ? | ? |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | ? | ? | (Yes) | 52.0 (52) | ? | ? | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/Events/selectstart