recherche sensible à la case

This commit is contained in:
Éric Li 2021-04-26 09:20:48 +02:00
parent 1caf2f0977
commit 555fedef2a
1 changed files with 1 additions and 1 deletions

View File

@ -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"}
});
});
</script>