Search code examples
virtual-keyboard

How to add a virtual keyboard supporting Japenese (Hiragana) language using jquery plugin?


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.


Solution

  • 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)

    Then initialize the keyboard as follows:

    $(function() {
      $('#keyboard').keyboard({
        language: ['ja'],
        layout: 'ms-Japanese Hiragana', // or "ja" for the greywyvern version
      });
    });