Topic: Google keyboard : how to include ?
Hello !
I would like to include google keyboard for the users who dont have a french keyboard.
How to get this done ?
There is a javascript to load, something like :
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Google Onscreen Keyboard API
google.load("elements", "1", {
packages: "keyboard"
});
function onLoad() {
var kbd = new google.elements.keyboard.Keyboard(
[google.elements.keyboard.LayoutCode.FRENCH],
['t1']);
}
google.setOnLoadCallback(onLoad);
</script>
And probably something more...
Any help ?