I am trying to format a number input by the user into currency using javascript. This works fine on <input type="text" />. However, on <input type="number" /> I cannot seem to be able to set the value to anything that contains non-numeric values. The following fiddle shows my problem
Is there anyway for me to set the value to something like $125.00?
I want to use <input type="number" /> so mobile devices know to bring up a keyboard for number input.
In the end I made a jQuery plugin that will format the
<input type="number" />appropriately for me. I also noticed on some mobile devices theminandmaxattributes don’t actually prevent you from entering lower or higher numbers than specified, so the plugin will account for that too. Below is the code and an example: