From dc2226bcddcd931682fefb4020511851f5d4808d Mon Sep 17 00:00:00 2001 From: Cappy Popp <356651+cappypopp@users.noreply.github.com> Date: Wed, 6 Jan 2021 13:44:30 -0500 Subject: [PATCH] switched to toUpperCase() in lookup --- LinkedIn - Demo Form Autofill.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LinkedIn - Demo Form Autofill.html b/LinkedIn - Demo Form Autofill.html index 1b33cb5..49c4ca6 100644 --- a/LinkedIn - Demo Form Autofill.html +++ b/LinkedIn - Demo Form Autofill.html @@ -261,7 +261,7 @@ }, country = document.querySelector("#Country"); // sets the value in the form the user can see - country.value = countries[newValue.toLowerCase()]; + country.value = countries[newValue.toUpperCase()]; }); /*['email', 'country'].forEach(function(inputField){