Search posts, tags, users, and pages
Emmanuel Aiyenigba
Software engineer and Dev Advocate
When you develop for the web, you may not be aware of several built-in APIs that can powerfully extend and enhance your app. Out of the many available APIs, this article will explain how to use four of the most interesting ones, so you can immediatel...
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
Thanks for the addition, Jordan. Glad you found the article helpful.
Jordan Brennan
WebOTP API is super interesting. Gonna read more about that, thanks!
Btw,
const form = input.closest("form")can be replaced withinput.form(all form controls have aformproperty that is the form element they belong to).