Skip to content

Commit cf9a6ff

Browse files
README updates
1 parent f073349 commit cf9a6ff

1 file changed

Lines changed: 5 additions & 21 deletions

File tree

README.md

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ It has automated listener to eliminating unnecessary changes on form.
5555
5656
2. Input Fields should specify the type of validation.
5757

58-
////////////////////For General Input Validation////////////////////////////////////////
58+
#### For General Input Validation
5959

6060
// For Simple Require.
6161
<input type="text" required name="name">
@@ -71,8 +71,8 @@ It has automated listener to eliminating unnecessary changes on form.
7171
7272
// For Password Match Validation.
7373
<input type="password" required match="field_name" name="password">
74-
75-
////////////////////For Select Validation////////////////////////////////////////////
74+
75+
#### For Select Validation
7676
7777
//For Simple Required
7878
<select class="" required>
@@ -82,7 +82,7 @@ It has automated listener to eliminating unnecessary changes on form.
8282
<option value="...">...</option>
8383
</select>
8484
85-
////////////////////For Textarea Validation//////////////////////////////////////////
85+
#### For Textarea Validation
8686
8787
// For Simple Required
8888
<textarea required>.....</textarea>
@@ -93,34 +93,18 @@ It has automated listener to eliminating unnecessary changes on form.
9393
<label for="uname">Name :</label>
9494
<input type="text" name="uname" required>
9595
96-
4. Form Tag Should use "**novalidate**" to Avoid Browser level validation.
96+
4. In form use "**novalidate**" to avoid browser interuptions.
9797

9898
<form method="POST/GET.." action="PATH TO HANDLE" ... novalidate>
9999
...
100100
...
101101
</form>
102102
103-
**This will support to avoid interrupts from browsers.**
104-
105-
ex. Chrome Browser
106103
107104
It Will listen the **Submit** button event **Automatically**.
108105

109106
So **No Need** to use ``<input type="submit"..... onClick="validate()" .....>``
110107

111-
**Adjust your CSS with the following,**
112-
113-
input {
114-
display: block !important;
115-
}
116-
117-
span {
118-
display: inline !important;
119-
}
120-
121-
label {
122-
display: inline !important;
123-
}
124108

125109
### License
126110

0 commit comments

Comments
 (0)