Rob Garrison

Results 770 comments of Rob Garrison

Hi @shengui919! Can you share an example? Please modify this demo - https://jsfiddle.net/Mottie/egb3a1sk/

Hi! Would you please share a link to your demo?

Hi @xalexbo! Using `getkeyboard` only works after the keyboard has been initialized. Please make sure to initialize it, and set the [`openOn` option](https://github.com/Mottie/Keyboard/wiki/Usability#openon) to an empty string - this prevents...

Hi @FredFronky ! I'm assuming you're basing your work off of this [virtual keyboard inside an iframe demo](https://jsfiddle.net/Mottie/2efyqt3u/)? How are you listening to the keyChange & input events? Please share...

If you want to bind to events inside the iframe, you'll still need to target the iframe first, then contents... ```js $("#iFrame") .contents() .find("#searchInput") .on("keyboardChange", function(e, keyboard, el) { console.log("Keyboard...

Hi @PratsBhatt! The main issue is that the Tab key moves the focus by design. Whereas this virtual keyboard was build to always redirect focus back to the input (because...

It should be possible. Try using `mouseup` instead of `click`. But, I still think the method you're describing will make the keyboard difficult to use for some users.

Hi @avipars! After seeing your question, I noticed that I missed some essential instructions on the [language wiki page](https://github.com/Mottie/Keyboard/wiki/Language). I've just added a few more notes on where the files...

Hi @goorgoor! All of the documentation is located in the wiki pages of this repository. The particular option you want is named [`alwaysOpen`](https://github.com/Mottie/Keyboard/wiki/Usability#alwaysopen). There are also a bunch of demos...

Hi @webportpl! Use [`keyboard.destroy()`](https://github.com/Mottie/Keyboard/wiki/Methods#destroy).