Current version 0.0.1

ML Keyboard usage examples

English

$('input#example-1').mlKeyboard({
  layout: 'en_US'
});

Russian

$('input#example-2').mlKeyboard({
  layout: 'ru_RU'
});

Spanish (click vowels to select accents)

$('input#example-3').mlKeyboard({
  layout: 'es_ES'
});

Italian (click vowels to select accents)

$('input#example-4').mlKeyboard({
  layout: 'it_IT',
  trigger: '#example-4-btn'
});

French (click vowels to select accents)

$('input#example-5').mlKeyboard({
  layout: 'fr_FR',
  trigger: '#example-5-btn'
});

Text Area (click vowels to select accents)

$('textarea#example-6').mlKeyboard({
  layout: 'pt_PT',
  trigger: '#example-6-btn'
});
Options

The following options are available to pass into ML Keyboard on initialization.

To change behaviour of single input field special data attribute should be added to it's tag name data-mlkeyboard-<option>="value" where option is the same attribute like it's described before.

By default plugin goes with all layouts included, but it's possible to customize plugin and left only some layouts as also new layouts can be easy added.

See document in docs folder.