Skip to content

Instantly share code, notes, and snippets.

@TakuyaAbe
Last active June 3, 2017 13:30
Show Gist options
  • Save TakuyaAbe/46893b1c9b571d8be021666008bba466 to your computer and use it in GitHub Desktop.
Save TakuyaAbe/46893b1c9b571d8be021666008bba466 to your computer and use it in GitHub Desktop.
フォームバリデーションライブラリParsley.jsでリアルタイムバリデーションを行う ref: http://qiita.com/_-_-_/items/74372058087b965764ba
<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>
<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>
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