-
-
Save nocodesupplyco/bd0ab19bf677ea8158cecb597cdc708d to your computer and use it in GitHub Desktop.
Webflow Slider Navigate w/ Arrow Keys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).on("keyup", function (event) { | |
if (event.which === 37) { | |
$(" .w-slider-arrow-left").trigger("tap"); | |
} else if (event.which === 39) { | |
$(".w-slider-arrow-right").trigger("tap"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment