Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

33%
+0 −2
Q&A How to fire the change event for an input field?

from the MDN, "Depending on the kind of element being changed and the way the user interacts with the element, the change event fires at a different moment: When the element is :checked (by c...

posted 2y ago by bowl0stu‭

Answer
#1: Initial revision by user avatar bowl0stu‭ · 2021-12-02T16:41:38Z (over 2 years ago)
from the MDN, 

  "Depending on the kind of element being changed and the way the user interacts with the element, the change event fires at a different moment:

 * When the element is :checked (by clicking or using the keyboard) for `input type="radio"` and `input type="checkbox"`;

 * When the user commits the change explicitly (e.g., by selecting a value from a `select`'s dropdown with a mouse click, by selecting a date from a date picker for `input type="date"`, by selecting a file in the file picker for `input type="file"`, etc.);

 * When the element loses focus after its value was changed, but not committed (e.g., after editing the value of textarea or `input type="text"`)."

Inserting a value into an input field with JS also allows us to simply fire another event depending on the kind of input used. For instance, `inputField.blur();` triggers the unfocus event which can be used to check the contents of an `input type="text"`

References:

[MDN input element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input)

[MDN change event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event)

[MDN blur event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/blur)

[MDN input event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event)