Hello,
First of all, thank you very much for creating this wonderful tool.
Recently, we have integrated this tool in our application and we have found one issue that if on touch screen, if we click on backspace key multiple times very fast it deletes the last character and add it again. We are using the below code to initialize the keyboard.
$("input[type='text']").keyboard({ autoaccept: true, caretToEnd: true, maxLength: 20, beforeVisible: function (e, keyboard, el) { var inModal = $(el).parents('.modal').length > 0; if (inModal) { keyboard.$keyboard.appendTo($(el).parents('.modal-content')); } } });