This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.
The onselectstart property of the GlobalEventHandlers mixin is an EventHandler that processes selectstart events.
The selectstart event fires when the user starts to make a new text selection on a webpage.
Syntax
object.onselectstart = functionRef;
Value
functionRef is a function name or a function expression. The function receives a FocusEvent object as its sole argument.
Examples
document.onselectstart = function() {
console.log('Selection started!');
};
For a full example, see our Key quote generator demo.
document.onselectstart = () => {
return false; // cancel selection
};
Specifications
| Specification | Status | Comment |
| Selection APIThe definition of 'GlobalEventHandlers.onselectstart' in that specification. | Working Draft | Initial definition. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Chrome
Full support Yes |
Edge
Full support 12 |
Firefox Full support 52 Full support 52 Full support 43 Disabled' From version 43: this feature is behind the |
IE
Full support Yes |
Opera
? |
Safari
Full support 1.3 |
WebView Android
Full support Yes |
Chrome Android
Full support Yes |
Firefox Android Full support 52 Full support 52 Full support 43 Disabled' From version 43: this feature is behind the |
Opera Android
? |
Safari iOS
Full support Yes |
Samsung Internet Android
Full support Yes |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
- Experimental. Expect behavior to change in the future.'
- Experimental. Expect behavior to change in the future.
- User must explicitly enable this feature.'
- User must explicitly enable this feature.
See also
selectstartevent- Related event handler:
GlobalEventHandlers.onselectionchange
GlobalEventHandlers.onselectstart by Mozilla Contributors is licensed under CC-BY-SA 2.5.