Rob Garrison
Rob Garrison
Hi @grouser! The problem is the `keyboard.close()` within the `beforeVisible` callback... when I comment it out, the accepted callback isn't logging - [demo](https://jsfiddle.net/Mottie/egb3a1sk/7184/)
Hi @GenijeOnline! Try this ([demo](https://jsfiddle.net/Mottie/0qs8pr4v/)): CSS ```css .keyboard-modal { z-index: 15999; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.3); } ``` JS ```js...
Oh, use [`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter) - it's not yet supported by all browsers by default, but [it'll add that blur effect](https://jsfiddle.net/Mottie/acng12je/). ```css .keyboard-modal { z-index: 15999; position: fixed; top: 0; left: 0;...
https://stackoverflow.com/questions/58033230/css-backdrop-filter-too-slow
Hi @squarism! I was actually thinking to build it as a library that can be used just like that... then I, with help, could build adapters for other libraries.
Hi @Philaine! Sorry for not responding sooner. I'm happy to hear that this work is helping others! To increase the keyboard button font size use something like this (modified from...
It sounds like you want to use an `input` instead of a `textarea` - [updated demo](http://jsfiddle.net/Mottie/gs50by82/1/) Also, please make sure that you've included all of the following files: - `jquery.min.js`...
Try this bit of CSS: ```css .ui-keyboard-button span { padding: 0px 15px; } ``` The `0px` adding top & bottom padding, while the `15px` adjusts the left & right padding.
Hi @oscardimanno! The [`openOn` option](https://github.com/Mottie/Keyboard/wiki/Usability#openon) is set to `'focus'` by default. I'm not sure how empty fields would cause the keyboard to open unless you have something in your code...
Hi @sbtran! You can't access an iframe from an external source. [It isn't possible because of security reasons](https://stackoverflow.com/questions/6049756/accessing-external-iframe-content).