Description: Requires the element to be the same as another one
Makes "field" required to be the same as #other
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<title>Makes "field" required to be the same as #other</title>
<link rel="stylesheet" href="https://jqueryvalidation.org/files/demo/site-demos.css">
<label for="password">Password</label>
<input id="password" name="password" />
<label for="password_again">Again</label>
<input class="left" id="password_again" name="password_again" />
<input type="submit" value="Validate!">
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/jquery.validation/1.16.0/jquery.validate.min.js"></script>
<script src="https://cdn.jsdelivr.net/jquery.validation/1.16.0/additional-methods.min.js"></script>
jQuery.validator.setDefaults({
$( "#myform" ).validate({
|
Demo: