DEV Community

Cover image for how to give number format to a input box text while I am typing it
Carlos Alberto
Carlos Alberto

Posted on

how to give number format to a input box text while I am typing it



<br>
function format_num(id) {<br>
var number = document.getElementById(&quot;principal&quot;).value;<br><br>
var checkedNew = number.split(&#39;.&#39;).join(&quot;&quot;);<br><br>
document.getElementById(&quot;principal&quot;).value = checkedNew.toString().replace(/\B(?=(\d{3})+(?!\d))/g, &quot;.&quot;);<br><br>
}<br>














Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay