forked from posabsolute/jQuery-Validation-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemoWithoutId.html
102 lines (97 loc) · 3.25 KB
/
demoWithoutId.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>JQuery Validation Engine</title>
<link rel="stylesheet" href="../css/validationEngine.jquery.css" type="text/css"/>
<link rel="stylesheet" href="../css/template.css" type="text/css"/>
<script src="../js/jquery-1.6.min.js" type="text/javascript">
</script>
<script src="../js/languages/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8">
</script>
<script src="../js/jquery.validationEngine.js" type="text/javascript" charset="utf-8">
</script>
<script>
jQuery(document).ready(function(){
// binds form submission and fields to the validation engine
jQuery("#formID").validationEngine();
});
/**
*
* @param {jqObject} the field where the validation applies
* @param {Array[String]} validation rules for this field
* @param {int} rule index
* @param {Map} form options
* @return an error string if validation failed
*/
function checkHELLO(field, rules, i, options){
if (field.val() != "HELLO") {
// this allows to use i18 for the error msgs
return options.allrules.validate2fields.alertText;
}
}
</script>
</head>
<body>
<p>
Demo validators without id's.
<br/>
</p>
<form id="formID" class="formular" method="post">
<fieldset>
<legend>
Required!
</legend>
<label>
<span>Field is required : </span>
<input value="" class="validate[required] text-input" type="text" name="req" />
</label>
<legend>
Placeholder & required
</legend>
<label>
<span>Field is required : </span>
<input value="This is a placeholder" data-validation-placeholder="This is a placeholder" class="validate[required] text-input" type="text" name="reqplaceholder" />
</label>
<label>
<span>Favorite sport 1:</span>
<select name="sport" class="validate[required]">
<option value="">Choose a sport</option>
<option value="option1">Tennis</option>
<option value="option2">Football</option>
<option value="option3">Golf</option>
</select>
</label>
<label>
<span>Favorite sport 2:</span>
<select name="sport2" multiple class="validate[required]">
<option value="">Choose a sport</option>
<option value="option1">Tennis</option>
<option value="option2">Football</option>
<option value="option3">Golf</option>
</select>
</label>
<br/> <br/>
<div>
<span>Radio Groupe :
<br/>
</span>
<span>radio 1: </span>
<input class="validate[required] radio" type="radio" name="group0" value="5"/><span>radio 2: </span>
<input class="validate[required] radio" type="radio" name="group0" value="3"/><span>radio 3: </span>
<input class="validate[required] radio" type="radio" name="group0" value="9"/>
</div>
<br/>
<div>
<span>Minimum 2 checkbox :
<br/>
</span>
<input class="validate[minCheckbox[2]] checkbox" type="checkbox" name="group[group]" value="5"/>
<input class="validate[minCheckbox[2]] checkbox" type="checkbox" name="group[group]" value="3"/>
<input class="validate[minCheckbox[2]] checkbox" type="checkbox" name="group[group]" value="9"/>
</div>
</fieldset>
<input class="submit" type="submit" value="Validate & Send the form!"/><hr/>
</form>
</body>
</html>