svelteschool / svelte-forms

A simple form component that doesn't care about what you put in it. It just works.
137 stars 5 forks source link

Change querySelectorAll to a more specific query #8

Closed ceifa closed 4 years ago

ceifa commented 4 years ago

Not sure in this simple case, but generally, getElementsByTagName is faster than querySelectorAll:

https://humanwhocodes.com/blog/2010/09/28/why-is-getelementsbytagname-faster-that-queryselectorall/

kevmodrome commented 4 years ago

Thanks! Did not know this.