Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link to cancel event to HTMLInputElement page #30946

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions files/en-us/web/api/htmlinputelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@ Listen to these events using [`addEventListener()`](/en-US/docs/Web/API/EventTar

- [`input`](/en-US/docs/Web/API/HTMLElement/input_event)
- : Fires when the `value` of an {{HTMLElement("input")}}, {{HTMLElement("select")}}, or {{HTMLElement("textarea")}} element has been changed. Note that this is actually fired on the {{domxref("HTMLElement")}} interface and also applies to [`contenteditable`](/en-US/docs/Web/HTML/Global_attributes/contenteditable) elements, but we've listed it here because it is most commonly used with form input elements.
- {{domxref("HTMLElement/cancel_event", "cancel")}}
- : Fires when the file prompt of an {{HTMLElement("input")}} with `type="file"` is dismissed without a file being selected. Note that this is actually fired on the {{domxref("HTMLElement")}} interface, but we've listed it here because form input elements are one of the few types of element it is used with.
- [`invalid`](/en-US/docs/Web/API/HTMLInputElement/invalid_event)
- : Fired when an element does not satisfy its constraints during constraint validation.
- [`search`](/en-US/docs/Web/API/HTMLInputElement/search_event) {{Non-standard_Inline}}
Expand Down