-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7892.js
69 lines (63 loc) · 2.26 KB
/
7892.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
function adrs()
{
var qw=0;
//for state.
var combo2 = document.getElementById("state");
if(combo2.value == null || combo2.value == "")
{
document.getElementById("j").innerHTML="<font color='#ff8566'>Select Your State!</font>";
qw++;
}
else
{
document.getElementById("j").innerHTML="";
}
//for locality
if(getid("area").value=="")
{
document.getElementById("f").innerHTML="<font color='#ff8566'>Enter Your Locality!</font>";
qw++;
}
else
{
document.getElementById("f").innerHTML="";
}
//for city
var m=/^[A-Za-z ]+$/;
var city=getid("city").value;
if(city=="")
{
document.getElementById("g").innerHTML="<font color='#ff8566'>Enter Your City!</font>";
qw++;
}
else if(!m.test(city))
{
document.getElementById("g").innerHTML="<font color='#ff8566'>Valid City Please!</font>";
qw=1;
}
else
{
document.getElementById("g").innerHTML="";
}
//for district
var district=getid("district").value;
if(district=="")
{
document.getElementById("h").innerHTML="<font color='#ff8566'>Enter Your District!</font>";
qw++;
}
else if(!m.test(district))
{
document.getElementById("h").innerHTML="<font color='#ff8566'>Valid District Please!</font>";
qw=1;
}
else
{
document.getElementById("h").innerHTML="";
}
if(qw!=0)
{
return false;
}
return true;
}