My case is, I have an input which is to define total hour of user's working. I want to create input mask with placeholder like this :
xxx.00
So, if user just input 0
it will be automatically 0.00
.
The user can input like 0.5
that will be automatically 0.50
I use inputmask like this :
I know its like time, but time just provide untill 24 like this
$(".time").inputmask("hh:mm", {"placeholder": "hh.mm"});
But I want to hh is flexible. like125.00
. for any solution, so appreciated