From 555fedef2ad846e6a6aa17bc3f9476c874a5a939 Mon Sep 17 00:00:00 2001 From: Nekori Date: Mon, 26 Apr 2021 09:20:48 +0200 Subject: [PATCH] =?UTF-8?q?recherche=20sensible=20=C3=A0=20la=20case?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- html/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/base.html b/html/base.html index 72e4294..4ea1d3b 100644 --- a/html/base.html +++ b/html/base.html @@ -66,7 +66,7 @@ // pages web possibles en fonction de ce que entre l'utilisateur // ex: "R101" -> ./HTML/R101.html $("#rechercher").keyup(function(e) { - if(e.keyCode == 13) {location.href = $(this).val() + ".html"} + if(e.keyCode == 13) {location.href = $(this).val().toUpperCase() + ".html"} }); }); \ No newline at end of file