onscreenkeyboard icon indicating copy to clipboard operation
onscreenkeyboard copied to clipboard

On-screen keyboard powered by jQuery.

Results 7 onscreenkeyboard issues
Sort by recently updated
recently updated
newest added

I would like the keyboard to revert to lowercase characters by default after an uppercase character is typed. I have tried adding jsKeyboard.changeToSmallLetter() at the end of the write function,...

When all text has been deleted the cursor should stop at position 0, but it allows it to go into negative numbers. to fix this i edited jsKeyboard.js added below...

1. Is there anyway to make the cursor (pointer, the blinking '|') appear because every time I am typing using the OS-keyboard, I lost focus of current textbox (input). 2....

`jQuery.fn.getSelectionStart = function(){     if(this.length == 0) return -1;     input = this[0];     var pos = input.value.length;     if (input.createTextRange) { var r = **document.selection.createRange();** r.moveEnd('character', input.value.length);         if (r.text == '')         pos =...

I have noticed that Chrome generates the following error if the page contains an input type of "file". Uncaught InvalidStateError: Failed to read the 'selectionStart' property from 'HTMLInputElement': The input...

When pressing the Enter key the return line is always added to the end of the input rather than the current cursor location. To replicate: - Focus on a text...