Skip to content

Instantly share code, notes, and snippets.

@haruta
Created January 31, 2013 07:51
Show Gist options
  • Save haruta/4681121 to your computer and use it in GitHub Desktop.
Save haruta/4681121 to your computer and use it in GitHub Desktop.
galaxy nexus で maxlenght値=value値の長さ のフォームの場合フォームに対して一切入力できなくなるっぽい。
<html>
<body>
<form action="" method="post">
exists maxlength: <input type="text" name="age" value="99" maxlength="2" /><br />
textarea: <textarea name="test"></textarea><br />
not exists maxlength: <input type="text" name="zip" value="" /><br />
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment