Skip to content

Instantly share code, notes, and snippets.

@ArtemSites
Created July 29, 2019 17:13
Show Gist options
  • Save ArtemSites/2c31af972cfc4a0845d71e4c994cad90 to your computer and use it in GitHub Desktop.
Save ArtemSites/2c31af972cfc4a0845d71e4c994cad90 to your computer and use it in GitHub Desktop.
Обработка события нажатия на кнопки.
$(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