UNPKG
equation-admin-template
Version:
latest (1.0.0)
1.0.0
Booststrap 4 admin template made by equation
equation-admin-template
/
ltr
/
assets
/
js
/
forms
/
form_validation
/
form_validation_material.js
16 lines
(15 loc)
•
303 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function
no_submit
(
)
{
return
false
; }
function
notifyOnErrorInput
(
input
)
{
var
message = input.
data
(
'validateHint'
); $.
Notify
({
caption
:
'Error'
,
content
: message,
type
:
'alert'
}); }
function
submit
(
form
)
{ console.
log
(form);
return
true
; }