-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.js
88 lines (70 loc) · 2.53 KB
/
common.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
$(document).ready(function () {
$('.numberonly').keypress(function (e) {
var charCode = (e.which) ? e.which : event.keyCode
if (String.fromCharCode(charCode).match(/[^0-9]/g))
return false;
});
});
function INCHCMValidation(unit){
debugger
var flag = true;
var length2 = document.getElementById("length2").value;
var width2 = document.getElementById("width2").value;
var depth2 = document.getElementById("depth2").value;
length2 = parseFloat(length2);
width2 = parseFloat(width2);
depth2 = parseFloat(depth2);
if(unit == "1"){
if(length2 > 11 || width2 > 11 || depth2 > 11){
alert("Inch value is not valid!");
flag = false;
}
}
if(unit == "2"){
if(length2 > 99 || width2 > 99 || depth2 > 99){
alert("centimeter value is not valid!");
flag = false;
}
}
return flag;
}
function INCHCMValidationBrik(unit){
debugger
var flag = true;
var length2 = document.getElementById("length2").value;
var width2 = document.getElementById("width2").value;
length2 = parseFloat(length2);
width2 = parseFloat(width2);
if(unit == "1"){
if(length2 > 11 || width2 > 11){
alert("Inch value is not valid!");
flag = false;
}
}
if(unit == "2"){
if(length2 > 99 || width2 > 99){
alert("centimeter value is not valid!");
flag = false;
}
}
return flag;
}
function INCHCMValidationSteel(unit){
debugger
var flag = true;
var length2 = document.getElementById("length2").value;
length2 = parseFloat(length2);
if(unit == "1"){
if(length2 > 11){
alert("Inch value is not valid!");
flag = false;
}
}
if(unit == "2"){
if(length2 > 99){
alert("centimeter value is not valid!");
flag = false;
}
}
return flag;
}