This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The GlobalEventHandlers.onselectstart
property represents the event handler that is called when a selectstart
event reaches this object, i.e. when the user starts to make a new text selection on a web page.
Syntax
obj.onselectstart = function;
Example
document.onselectstart = function() { console.log("Selection started!"); };
For a full example, see our Key quote generator demo.
Specifications
Specification | Status | Comment |
---|---|---|
Selection API The definition of 'GlobalEventHandlers.onselectstart' in that specification. |
Working Draft | Initial definition. |
Browser compatibility
Feature | Firefox (Gecko) | Chrome | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 43 (43)[1] 52 (52)[2] |
(Yes) | (Yes) | ? | 1.3 |
Feature | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
onselectionchange |
43.0 (43)[1] 52.0 (52)[2] |
? | ? | ? | ? |
[1] This is implemented behind the dom.select_events.enabled
preference, which defaults to false
except on Nightly.
[2] This is now fully enabled on Firefox 52 release version.