You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input.length is returning 0 on line 130 and thus not triggering the while loop body. input.value.length does in fact get the correct value.
I'm not familiar enough with JS and various browser changes, but it seems pretty directly related to this, the prototype usage, and related code. Does this help in figuring out why it may not be working? Happy to try and add anything else that would.
Appreciate the library!
The text was updated successfully, but these errors were encountered:
I think it's because some javascript engines don't allow overriding String.length anymore. I guess you could use input.value.length, or call input.toString().length, which is how I solved the problem.
input.length is returning 0 on line 130 and thus not triggering the while loop body. input.value.length does in fact get the correct value.
I'm not familiar enough with JS and various browser changes, but it seems pretty directly related to this, the prototype usage, and related code. Does this help in figuring out why it may not be working? Happy to try and add anything else that would.
Appreciate the library!
The text was updated successfully, but these errors were encountered: