Is there any plugin to implement Japanese (Hiragana only) virtual keyboard using JQuery plugin?
The virtual keyboard should pop up on textbox click.
Any help would be appreciated.
Here is a quick demo of setting up the keyboard (demo)
Make sure to load in, along with the css & keyboard files (look at the resources tab in the demo)
https://mottie.github.io/Keyboard/layouts/keyboard-layouts-microsoft.js, or https://mottie.github.io/Keyboard/layouts/keyboard-layouts-greywyvern.js
If these two files are a bit too big, since you only want one layout, then you can load in this file - https://github.com/Mottie/Keyboard/blob/master/layouts/ms-Japanese-Hiragana.js - or copy/paste it directly into your code
Then initialize the keyboard as follows:
$(function() {
$('#keyboard').keyboard({
language: ['ja'],
layout: 'ms-Japanese Hiragana', // or "ja" for the greywyvern version
});
});