Last active
June 3, 2017 13:30
-
-
Save TakuyaAbe/46893b1c9b571d8be021666008bba466 to your computer and use it in GitHub Desktop.
フォームバリデーションライブラリParsley.jsでリアルタイムバリデーションを行う ref: http://qiita.com/_-_-_/items/74372058087b965764ba
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form data-parsley-validate> | |
<input type="text" required placeholder="テキストを入力してください" data-parsley-trigger="keyup focusout change input"> | |
<input type="email" required placeholder="メールアドレスを入力してください" data-parsley-trigger="keyup focusout change input"> | |
<button type="submit">submit</button> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form data-parsley-validate data-parsley-trigger="keyup focusout change input"> | |
<input type="text" required placeholder="テキストを入力してください"> | |
<input type="email" required placeholder="メールアドレスを入力してください"> | |
<button type="submit">submit</button> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parsley.options.trigger = "keyup focusout change input"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment