skip to Main Content

jQuery.inputmask and its placeholder

Here is my code: $("input").inputmask("decimal", { "radixPoint": ",", "groupSeparator": " ", "digits": 2, "autoGroup": true, "digitsOptional": true, "suffix": " EUR", "placeholder": "129,5", "clearMaskOnLostFocus": false, }) Everything works great but I don't really understand how to display "129,5" as a placeholder…

VIEW QUESTION
Back To Top
Search