SamWM/jQuery-Plugins

Keyboard cursor issue in Internet Explorer using numeric version 3.1

Opened this issue · 0 comments

Using the demo http://code.webmonkey.uk.com/plugins/jquery.numeric/test.html (numeric version 3.1) in Internet Explorer (tested on 9,11) there is an UX issue.

  • When using the keyboard cursor to move from left to right in the input textfield, the cursor automatically selects portions of the text (see screenshot below).
  • Then when trying to move from right to left, the cursor will be blocked.

image

I fixed this issue myself by downloading another version of the numeric plugin (version unknown + not specified) from http://www.texotela.co.uk/code/jquery/numeric/ and modified two lines of code. At Line 58 + 95 changed decimal.charCodeAt(0) to decimal.toString().charCodeAt(0).

Would appreciate if somebody could look at this issue please.