diff --git a/docs/GoogleAnalytics.js b/docs/GoogleAnalytics.js
index f1ae6368add..866e6d68ba7 100644
--- a/docs/GoogleAnalytics.js
+++ b/docs/GoogleAnalytics.js
@@ -17,4 +17,17 @@ class GoogleAnalytics {
'search_term': search_term
});
}
+
+ static countrySelected(country) {
+ gtag("event",
+ "select_item",
+ {
+ item_list_id: "countrySelect",
+ items: [
+ {
+ item_id: country,
+ }
+ ]
+ });
+ }
}
diff --git a/docs/batchCodeTable.html b/docs/batchCodeTable.html
index c372bcfaec8..6c9bcf9312a 100644
--- a/docs/batchCodeTable.html
+++ b/docs/batchCodeTable.html
@@ -1,36 +1,43 @@
+
-
-
-Batch Codes of Coronavirus 2019 Vaccines
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-Fork me on GitHub
-Batch Codes of Coronavirus 2019 Vaccines
-
-
-
-
-
-Check out your batch code (Last updated: March 24, 2023)
+ Fork me on GitHub
+
Batch Codes of Coronavirus 2019 Vaccines
+
+
-
-
-
- |
-Batch |
-Adverse Reaction Reports |
-Deaths |
-Disabilities |
-Life Threatening Illnesses |
-Company |
-Countries |
-Severe reports |
-Lethality |
-
-
-
-Data Source:
-Vaccine Adverse Event Reporting System
+
+
+ Check out your batch code (Last updated: March 24, 2023)
+
+
+
+
+ |
+ Batch |
+ Adverse Reaction Reports |
+ Deaths |
+ Disabilities |
+ Life Threatening Illnesses |
+ Company |
+ Countries |
+ Severe reports |
+ Lethality |
+
+
+
+ Data Source:
+ Vaccine Adverse Event Reporting System
(VAERS)
-
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/batchCodeTable.js b/docs/batchCodeTable.js
index 23b3882b395..aafbc5eaae6 100644
--- a/docs/batchCodeTable.js
+++ b/docs/batchCodeTable.js
@@ -117,6 +117,7 @@ class BatchCodeTableInitializer {
this.#columnSearch.columnContentUpdated();
this.#selectInput();
});
+ GoogleAnalytics.countrySelected(this.#getCountry());
}
#_addEmptyControlColumn(json) {