-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculateinjectionvolume.html
82 lines (73 loc) · 3.45 KB
/
calculateinjectionvolume.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SterileCalc</title>
</head>
<body>
<header>
<nav>
<div class="row">
<div class="left">
<ul>
<li><a href="index.html">💉SterileCalc</a></li>
</ul>
</div>
<div class="right">
<ul>
<li><a href="sterileprocurementresources.html">Other Resources</a></li>
<li><a href="about.html">About</a></li>
<li><a href="https://github.com/brittanyvl/SterileCalc" target="_blank">Source Code</a></li>
<li><button onclick="disclaimer()">Read Me</button></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="row">
<div class="column">
<div class="calculatorcontainer">
<h2><i class="fa-solid fa-syringe"></i> Calculate Injection Volume</h2>
<p>The strength of an injectable drug can change from one specific drug product to the next; when
evaluating sterile drugs it's often helpful to understand how the drug's strength and typical dose
are related. This calculation can help determine if a drug product is too concentrated or diluted
for a specific administrative route or dosing protocol. Medical providers use this same calculation
to translate their patient's dose from one product to the next, based on the drugs strength. </p>
<div class="formfield">
<p><b>Prescription Information</b>
<p>
<div class="calcrow">
<input type="number" placeholder="Prescribed Dose" id="convert_doseNum">
<select id="convert_doseUnit">
<option value="mcg">mcg</option>
<option value="mg" selected>mg</option>
<option value="g">g</option>
</select>
</div>
<p><b>Drug Information</b></p>
<div class="calcrow">
<input type="number" placeholder="Drug Strength on Vial" id="convert_strengthNum">
<select id="convert_strengthUnit">
<option value="mcg">mcg</option>
<option value="mg" selected>mg</option>
<option value="g">g</option>
</select>
<p id="convert_per">per every</p>
<input type="number" placeholder="1" value="1" id="convert_strengthVolNum" step="0.1">
<p id="convert_mL">mL</p>
</div>
<button type="button" id="calculateButton"
onclick="printInjectionVol('convert_result')">Calculate</button>
<div class="result" id="convert_result">
</div>
</div>
</div>
</div>
</div>
</div>
<script src="sterilecalc.js"></script>
<script src="https://kit.fontawesome.com/e642d62004.js" crossorigin="anonymous"></script>
</body>
</html>