https://github.com/suhdev/sh-keyboard
JavaScript Keyboard for touch devices.
https://github.com/suhdev/sh-keyboard
Last synced: 9 months ago
JSON representation
JavaScript Keyboard for touch devices.
- Host: GitHub
- URL: https://github.com/suhdev/sh-keyboard
- Owner: suhdev
- Created: 2015-06-11T02:18:13.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-11T02:37:06.000Z (about 11 years ago)
- Last Synced: 2025-10-09T12:33:01.434Z (9 months ago)
- Language: JavaScript
- Size: 516 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# shKeyboard
A JavaScript Keyboard for touch devices.
# Dependencies
jQuery is the only dependency, the code is built against the most recent version 2.1.13.
However, older versions should work just fine.
# Usage
1. Include jQuery in your HTML
```html
```
2. Include shKeyboard script file
```html
```
3. In your JS code use the following to create a new instance of `shKeyboard`;
```javascript
var key = new shKeyboard();
//if no parameter is supplied to the `render` method,
//by default it will append the keyboard to the `body`
//element.
key.render($('parent-element-selector'));
```