I am using virtual keyboard plugin http://mottie.github.io/Keyboard/.
Here, in the mottie textarea I want to fire a keypress event, so that I can use the physical keyboard to enter the text in the seleted laguage.
I tried something like this
$('textarea[name=Notes]').keypress(function (e) {});
and like this also
$("div.ui-keyboard-preview-wrapper").find('textarea[name=Notes]').keypress(function (e) {});
I also tried like this
$(".ui-keyboard-preview").keypress(function (e) {});
But, its not triggering the event. Is there anyway to do this?