We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f7adc8 commit 0b1b992Copy full SHA for 0b1b992
README.md
@@ -31,16 +31,20 @@ Then Integrate your form with Validator.
31
forceFilter: true
32
});
33
```
34
-#### To check validation
+## Validator Action
35
+
36
+### Check Form is Valid or Not.
37
38
```javascript
- myform.check() // True | False
39
+// Retrun status as True|False.
40
+ myform.check()
41
42
-#### To apply on dynamic elements
43
+### Update all Newly created elements to Validator's List.
44
45
- myform.update() // It will update the DOM.```
46
+ // It will update the DOM.
47
+ myform.update()
48
49
50
0 commit comments