html-numeric-input icon indicating copy to clipboard operation
html-numeric-input copied to clipboard

a textbox that only allow visitor type numeric, dot, and minus sign

Results 2 html-numeric-input issues
Sort by recently updated
recently updated
newest added

After input some numbers in the textbox, then press arrow left or right, the cursor stoped at the end of textbox, even click mouse between any numbers.

The letter `e` / `E` is a valid way to represent a javascript number. ```js parseFloat('4e3') === 4000 // true ``` ```js (4000).toExponential() === '4e+3' // true ```