How can I disable the left and right arrow keys of Photoswipe using JavaScript?

55 Views Asked by At

how to disable left and right arrow keys of Photoswipe ?

I tried the following

  • keyboard: false,

and this code block

window.addEventListener("keydown", function(e) {

    if (["ArrowLeft", "ArrowRight"].includes(e.code) &&
        (e.target === pswpBtnLeft || e.target === pswpBtnRight)) {
        e.preventDefault();
        e.stopPropagation();

    }
}, false);
1

There are 1 best solutions below

0
Ujjawal Kumar On
// Disable left and right arrow keys
window.addEventListener("keydown", function(e) {
    if (["ArrowLeft", "ArrowRight"].includes(e.code)) {
        e.preventDefault();
    }
}, false);

Assuming that the photoswipe is active currently on the web page.