open keyboard when feild selected.
![]() ![]() |
Does anyone know how i could modify this script so that as soon as soon as you click a field in a form it opens up the keyboard (without double clicking)? Thanks. |
![]() ![]() |
If you mean the userScript version, just change the "dblclick" event handler to "focus" or "click". elem.addEventListener('dblclick', function() { self.VKI_show(this); }, false);
to this: elem.addEventListener('focus', function() { self.VKI_show(this); }, false);
Or use "click" instead of focus if you want it to appear for mouse click focus only. |
![]() ![]() |
That's exactly what i wanted, thanks Heaps!!! |
![]() ![]() |
When i use static version, it works fine with clicking on keyboard icon to show up keyboard. In IE, FF and CHROME. But when i use user version if found following problems with following changes: Without editing js:
When Edited to show on 'focus'(as mentioned above):
|
![]() ![]() |
The userscript version is not designed to work in IE. Only the static version is IE-compatible. |



