© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Jordan Brennan
WebOTP API is super interesting. Gonna read more about that, thanks!
Btw, const form = input.closest("form") can be replaced with input.form (all form controls have a form property that is the form element they belong to).
const form = input.closest("form")
input.form
form
Emmanuel Aiyenigba
Software engineer and Dev Advocate
Thanks for the addition, Jordan. Glad you found the article helpful.