Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ It has automated listener to eliminating unnecessary changes on form.
<div id=newUser> </div> // Not-Preferred [but it supports]

2. Input Fields should specify the type of validation.

//***************For General Input Validation**************************************

// For Simple Require.
<input type="text" required name="name">
Expand All @@ -59,6 +61,22 @@ It has automated listener to eliminating unnecessary changes on form.
// For Password Match Validation.
<input type="password" required match="field_name" name="password">

//***************For Select Validation*******************************************

//For Simple Required
<select class="" required>
<option value=0></option> // This Option going to filter.
<option value="...">...</option>
<option value="...">...</option>
<option value="...">...</option>
</select>

//***************For Textarea Validation*******************************************

// For Simple Required
<textarea required>.....</textarea>


3. Every Input Fields should have a Label with **FOR** attributes.

<label for="uname">Name :</label>
Expand Down