saveCountryOptions()

This commit is contained in:
frankknoll
2022-03-24 10:04:20 +01:00
parent 502a09af98
commit bd2e6603a6
4 changed files with 188 additions and 21 deletions

View File

@@ -1,16 +1,16 @@
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Batch Codes of Coronavirus 2019 Vaccines</title>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.4/css/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="batchCodeTable.css">
<link rel="stylesheet" type="text/css" href="forkMeOnGitHub.css">
<link href="https://cdn.datatables.net/1.11.4/css/jquery.dataTables.css" rel="stylesheet" type="text/css" />
<link href="batchCodeTable.css" rel="stylesheet" type="text/css" />
<link href="forkMeOnGitHub.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" charset="utf8"
src="https://cdn.datatables.net/1.11.4/js/jquery.dataTables.min.js"></script>
<script charset="utf8" src="https://cdn.datatables.net/1.11.4/js/jquery.dataTables.min.js"
type="text/javascript"></script>
<script src="./batchCodeTable.js"></script>
<script>
$(document).ready(function () {
@@ -32,7 +32,7 @@
<p>
<label>Select country:
<select id="countrySelect" name="country">
<option value="Global" selected>Global</option>
<option selected="" value="Global">Global</option>
<option value="Afghanistan">Afghanistan</option>
<option value="Albania">Albania</option>
<option value="Algeria">Algeria</option>
@@ -161,11 +161,11 @@
<option value="Zambia">Zambia</option>
</select>
</label>
</p>
<h2 class="heading"></h2>
<p>
<b>Check out your batch code</b> (Last updated: <span id="last_updated">March 18, 2022</span>)
</p>
<p>
<table class="display" id="batchCodeTable">
<thead>
<tr>
@@ -181,7 +181,6 @@
</tr>
</thead>
</table>
</p>
</body>
</html>