Hi All;
my textbox value = "1000000"
How To make texbox index 2 add ".";
output "1.000000";
Hi All;
my textbox value = "1000000"
How To make texbox index 2 add ".";
output "1.000000";
var input = $('#yourId');
var text = input.val();
input.val(text.substring(0, 1) + '.' + text.substring(1));