kein-404
kein-404

Reputation: 1

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

how to disable left and right arrow keys of Photoswipe ?

I tried the following

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);

Upvotes: 0

Views: 102

Answers (1)

Ujjawal Kumar
Ujjawal Kumar

Reputation: 286

// 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.

Upvotes: 0

Related Questions