$('.input').on('keypress', function (e) {
if (e.key !== 'Enter') {
return;
}
$(this).closest('form').submit();
});
$('.input').on('keypress', function (e) {
if (e.key !== 'Enter') {
return;
}
$(this).closest('form').submit();
});