jquery-confirm
jquery-confirm copied to clipboard
How con I use the Key Enter in the Prompt
I´m ussing the last version of the Jquery Confirm, but i have a question.
How can i use the key enter but inside the textbox?
I already add this;
keys: [ 'enter' ],
but only works when the textbox isn´t focus. I need that i can submit the prompt when i press Enter Key inside the textbox because, i´m working with a barcode scanner so the enter is press automatically
Thanks.
I have the same issue
Workaround:
onOpen: function () {
let submit = this.$$confirm;
$(this.$content).on('keypress', function(e) {
if (e.which === 13) {
submit.trigger('click');
}
});
}