-
Notifications
You must be signed in to change notification settings - Fork 0
/
sectionyield.html
58 lines (46 loc) · 1.92 KB
/
sectionyield.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sections</title>
</head>
<body>
<!--Sections Start-->
<div class="sections">
<h3>Section Yield</h3>
<p class="description">Enter length of section and add piece lengths to table below to calculate how many lengths are needed</p>
<!-- <div class="sectionsWrapper"> -->
<div class = contentWrapper>
<div class = sectColumn1>
<p>Section Length</p>
<p>Piece Length</p>
</div>
<div class = sectColumn2>
<input type ="text" id="secLength" name="secLength" style="width:50px;"></input><br>
<input type ="text" id="secPieceLength" name="secPieceLength" style = "width:50px"></input><br>
</div>
<div class = sectColumn3>
<button onclick = "calcSection()">Calculate</button><br>
<button onclick = "calcSectAdd()">Add</button></br>
</div>
</div>
<h5>Section Quick Select</h5 >
<select id="sectionSelect" onchange="sectQuickSelect()">
<option>Select a size</option>
<option>6000</option>
<option>5000</option>
<option>3000</option>
<option>2000</option>
<option>1000</option>
</select> <br>
<select id="secListBox" name="secListBox" size="6">
</select> </br>
<button onclick = "calcSectRemove()">Remove</button></br>
<button onclick = "calcSectClear()">Clear</button></br>
<p id="sectionResult"></p>
</div>
</body>
<script type = "text/javascript" src = "signcalc.js"></script>
</html>