diff --git a/app/static/js/jury_but.js b/app/static/js/jury_but.js
index 945e93333e47645e2a37d39721df6a80ebce58d9..11be4de7a9c7b63cc19c710db17d2056cccc1e87 100644
--- a/app/static/js/jury_but.js
+++ b/app/static/js/jury_but.js
@@ -85,6 +85,19 @@ $(function () {
     document.querySelector("div.prev").innerHTML = "";
     document.querySelector("div.next").innerHTML = "";
   }
+  $(document).keydown(function(event) {
+    if (event.key === "ArrowRight") {
+      let nextLink = $(".next a").attr("href");
+      if (nextLink) {
+        window.location.href = nextLink;
+      }
+    } else if (event.key === "ArrowLeft") {
+      let prevLink = $(".prev a").attr("href");
+      if (prevLink) {
+        window.location.href = prevLink;
+      }
+    }
+  });
 });
 
 //  ----- Etat du formulaire jury pour éviter sortie sans enregistrer