$(document).keypress(function(event) {
// +
if (event.which == 43) {
// ...
}
}
HTML
<input type="button" value="+" name="plus">
Как я могу активировать метод нажатия клавиш с помощью + при нажатии кнопки?
$('input[name="plus"]').click(function(){
// ??? How to go further ???
})