-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcscript.js
executable file
·210 lines (187 loc) · 7.26 KB
/
cscript.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// Form Validation
jQuery(function($) {
var validation_holder;
$("form#form1 input[name='Submit']").click(function(e) {
var validation_holder = 0;
var name = $("form#form1 input[name='name']").val();
var name_regex = /^[A-z ]+$/; // reg ex phone check
var email = $("form#form1 input[name='email']").val();
var email_regex = /^[\w%_\-.\d]+@[\w.\-]+.[A-Za-z]{2,6}$/;
var phone = $("form#form1 input[name='phone']").val();
var phone_regex = /^\d{10}$/; // reg ex phone check
var message = $("form#form1 textarea[name='text']").val();
var msg_from = $("form#form1 input[name='msg_from']").val();
/* validation start */
if(name == "") {
$("span.val_fname").html("* Please Enter your name.").addClass('validate');
validation_holder = 1;
} else {
if(!name_regex.test(name)){ // if invalid email
$("span.val_fname").html("* Invalid name.").addClass('validate');
validation_holder = 1;
} else {
$("span.val_fname").html("");
}
}
if(email == "") {
$("span.val_email").html("* Please Enter email").addClass('validate');
validation_holder = 1;
} else {
if(!email_regex.test(email)){ // if invalid email
$("span.val_email").html("* Invalid Email!").addClass('validate');
validation_holder = 1;
} else {
$("span.val_email").html("");
}
}
if(message == "") {
$("span.val_msg").html("* Please Enter your message").addClass('validate');
validation_holder = 1;
}
if(phone == "") {
$("span.val_phone").html("* Please Enter contact details").addClass('validate');
validation_holder = 1;
} else {
if(!phone_regex.test(phone)){ // if invalid email
$("span.val_phone").html("* Invalid contact!").addClass('validate');
validation_holder = 1;
} else {
$("span.val_phone").html("");
}
}
if(validation_holder == 1) { // if have a field is blank, return false
$("p.validate_msg").slideDown("fast");
return false;
}
else
{
validation_holder = 0;
}// else return true
/* validation end */
e.preventDefault();
submitForm();
function submitForm(){
$.ajax({
type: "GET",
url: "email.php",
data: "name=" + name + "&email=" + email + "&message=" + message + "&phone=" + phone + "&msg_from=" + msg_from ,
success : function(data){
//alert(data);
if(data == "success")
{
$('#form1').fadeTo( "slow", 0.15, function() {
$(this).find(':input').attr('disabled', 'disabled');
$(this).find('label').css('cursor','default');
$('#msgSubmit').removeClass('hidden');
});
}
else{
$('#form1').fadeTo( "slow", 0.15, function() {
$('#error').removeClass('hidden');
});
}
}
});
}
});
//*********************************************
// Apply Now Form Validation
//*********************************************
$("form#form2 input[name='Submit']").click(function(e) {
var validation_holder = 0;
var name = $("form#form2 input[name='name']").val();
var name_regex = /^[A-z ]+$/; // reg ex phone check
var email = $("form#form2 input[name='email']").val();
var email_regex = /^[\w%_\-.\d]+@[\w.\-]+.[A-Za-z]{2,6}$/;
var phone = $("form#form2 input[name='phone']").val();
var phone_regex = /^\d{10}$/; // reg ex phone check
var address = $("form#form2 textarea[name='text']").val();
var msg_from = $("form#form2 input[name='msg_from']").val();
var model = $("form#form2 select[name='model']").val();
var country = $("form#form2 input[name='country']").val();
console.log($(this).closest('form').serialize());
/* validation start */
if(name == "") {
$("span.name_val").html("* Please Enter your name.").addClass('validate');
validation_holder = 1;
} else {
if(!name_regex.test(name)){ // if invalid email
$("span.name_val").html("* Invalid name.").addClass('validate');
validation_holder = 1;
} else {
$("span.name_val").html("");
}
}
if(email == "") {
$("span.email_val").html("* Please Enter email").addClass('validate');
validation_holder = 1;
} else {
if(!email_regex.test(email)){ // if invalid email
$("span.email_val").html("* Invalid Email!").addClass('validate');
validation_holder = 1;
} else {
$("span.email_val").html("");
}
}
if(address == "") {
$("span.msg_val").html("* Please Enter your address").addClass('validate');
validation_holder = 1;
}
else{ $("span.msg_val").html("");}
if(model == "") {
$("span.model_val").html("* Please Select your Phone Model").addClass('validate');
validation_holder = 1;
}
else{ $("span.model_val").html("");}
if(country == "") {
$("span.con_val").html("* Please enter your country").addClass('validate');
validation_holder = 1;
}
else{ $("span.con_val").html("");}
if(phone == "") {
$("span.phone_val").html("* Please Enter contact details").addClass('validate');
validation_holder = 1;
} else {
if(!phone_regex.test(phone)){ // if invalid email
$("span.phone_val").html("* Invalid contact!").addClass('validate');
validation_holder = 1;
} else {
$("span.phone_val").html("");
}
}
if(validation_holder == 1) { // if have a field is blank, return false
$("p.validate_msg").slideDown("fast");
return false;
}
else
{
validation_holder = 0;
}// else return true
/* validation end */
e.preventDefault();
submitForm();
function submitForm(){
$.ajax({
type: "GET",
url: "email.php",
data: "name=" + name + "&email=" + email + "&address=" + address + "&phone=" + phone + "&msg_from=" + msg_from + "&model=" + model + "&country=" + country,
success : function(data){
//alert(data);
if(data == "success")
{
$('#form2').fadeTo( "slow", 0.15, function() {
$(this).find(':input').attr('disabled', 'disabled');
$(this).find('label').css('cursor','default');
$('#success').removeClass('hidden');
});
}
else{
$('#form2').fadeTo( "slow", 0.15, function() {
$('#fail').removeClass('hidden');
});
}
}
});
}
});
}); // jQuery End