I made a keyboard plugin. When I click on values of the keyboard it succesfully fills the input box, but it doesn't trigger my event.
In a nutshell:
<form>
<input id='testinput' type='text' name='test' value='' />
</form>
jQuery:
$('input').focus(function(){
$('input').keyboard().show();
});
$('#test-input').on('input', function() {
alert('change');
});
The code for the keyboard is a bit too big to show it here. It is attached in the fiddle. When I manually write something in the input it is triggered, but not via the keyboard.
Can someone point me in the right direction?