JavaScript library for using Georgian keyboard layout in HTML elements.
Before writing any code specific to this library, you need to include one of the bundled versions.
Repository contains dist/ directory, where you’ll find different versions.
You will need only one out of those files.
geokeyboard.js - Unminified bundled library without polyfillsgeokeyboard.dev.js - Development version which you won’t use in productiongeokeyboard.min.js - Minified library without polyfillsgeokeyboard.min.pf.js - Minified version that includes polyfills (Best for compatibility with old browsers)In this example we’re including minified version with polyfills (put this code before closing body tag):
<script src="./dist/geokeyboard.min.pf.js"></script>
Alternatively, you can include Geokeyboard via CDN and download no files from the repo:
<script src="https://cdn.rawgit.com/dachinat/geokeyboard/8812bd508d0e58602f282e219ed04d44a3ab5014/dist/geokeyboard.min.pf.js"></script>
Right after above examples you will have access to Geokeyboard object. Which you’ll need to initiate with new
keyword.
var geokb = new Geokeyboard;
See an an example on JSFiddle.
Go head to Initializing a constructor to continue with this guide.