Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 323 Bytes

File metadata and controls

11 lines (10 loc) · 323 Bytes

html5Validate

A jQuery plugin that works on top of html5 constraint validation API

how to use

$("#register-form").html5Validate({
    email: [{type: "server"}],
    password: [{type: "match", compare: "password_confirmation"}],
    password_confirmation: [{type: "match", compare: "password"}],
});