Created
July 29, 2019 17:13
-
-
Save ArtemSites/2c31af972cfc4a0845d71e4c994cad90 to your computer and use it in GitHub Desktop.
Обработка события нажатия на кнопки.
This file contains hidden or 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
$(window, document).keydown(function(event) { | |
if (event.which == 38 || event.which == 39) { //+ | |
event.preventDefault(); | |
$('#shop__item-count-counter-active').next().trigger("click"); | |
} | |
if (event.which == 37 || event.which == 40) { //- | |
event.preventDefault(); | |
$('#shop__item-count-counter-active').prev().trigger("click"); | |
} | |
if (event.which == 13) { //положить в корзину | |
event.preventDefault(); | |
$('#shop__item-button-active').trigger("click"); | |
} | |
// console.log(event.which); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment