Input Password - HTML5, Intel xdk, Cordova

Asked

Viewed 95 times

0

I’m having a problem with the input type="password".

On Android the input password is always starting with the uppercase letter. How do I click on input the first letter already appears lowercase?

In IOS it works correctly. Follow the code I am using:

<input type="password" name="senha" value="">

1 answer

2

Junior, try to use the autocapitalize as off

<input type="password" name="senha" value="" autocapitalize="off">

Browser other questions tagged

You are not signed in. Login or sign up in order to post.