--- title: select slug: Web/API/Element/select_event translation_of: Web/API/Element/select_event ---
L'évènement select
est déclenché quand du texte est sélectionné. L'évènement peut ne pas être disponible pour tous les éléments dans tous les langages. Par exemple, en HTML5, les évènements select ne peuvent être envoyés que sur des éléments input
de formulaire et textarea
.
Property | Type | Description |
---|---|---|
target {{readonlyInline}} |
EventTarget |
The event target (the topmost target in the DOM tree). |
type {{readonlyInline}} |
DOMString |
The type of event. |
bubbles {{readonlyInline}} |
Boolean |
Whether the event normally bubbles or not. |
cancelable {{readonlyInline}} |
Boolean |
Whether the event is cancellable or not. |
view {{readonlyInline}} |
WindowProxy |
document.defaultView (window of the document) |
detail {{readonlyInline}} |
long (float ) |
0. |
<input id="test" type="text" value="Sélectionnez-moi !" /> <script> var elem = document.getElementById('test'); elem.addEventListener('select', function() { alert('La sélection a changé !'); }, false); </script>