Input Password - HTML5, Intel xdk, Cordova

0

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

On Android the input password always starts with the capital letter. How do I when I click on input the first letter is already lowercase?

In IOS it works correctly. Here is the code I'm using:

<input type="password" name="senha" value="">
    
asked by anonymous 16.10.2015 / 20:40

1 answer

2

Junior, try to use autocapitalize as off

<input type="password" name="senha" value="" autocapitalize="off">
    
16.10.2015 / 20:57