Most voted "mask" questions
63 questions
Sort by count of
-
0
votes1
answer747
viewsHow to add limit value along with jquery Mask?
Guys I’m using the mask plugin of this link: https://igorescobar.github.io/jQuery-Mask-Plugin/ I use the following jquery to make the mask: $('.decimal').mask('000,0', {reverse: true}); However I…
-
0
votes0
answers909
viewsIonic 3 Masks and CPF Validation
Good afternoon guys, I’m making a PWA app with Ionic 3 and I need to insert some masks in forms and validate the user’s CPF. I have tried various forms and libs, but have not succeeded in any. Could…
-
0
votes0
answers4902
viewsCan you input masking and validation in React?
I am using several different Components and trying to integrate them. In this example here I used React-input-Mask and React-material-ui-form-Validator, I am using the material-ui inputs. Does…
-
0
votes1
answer375
viewsJquery HTML Currency Mask (no input)
Hello. I’m behind a coin mask made in jquery, but that applies directly to a span html tag, with a specific class. What else I have found in my searches are input masks for forms, which is not the…
-
0
votes1
answer285
viewsMask using flask does not load
This is the header: <script src="{{ url_for('static', filename='jquery-2.1.4.min.js') }}"></script> <script src="{{ url_for('static', filename='main.js')…
-
0
votes1
answer213
viewsIs it possible to dynamically remove a directive with Vuejs?
I would like to know if it is possible to remove a directive dynamically with Vuejs Ex: <v-text-field v-mask="'XX:XX'" ></v-text-field> props: { mask: { type: String, default: '' } }…
-
0
votes1
answer38
viewsDefault value with imaskjs
I created a mask using imaskjs for monetary value in an HTML input: var element = document.getElementById("txtTeste"); var maskOptions = { mask: Number, scale: 2, thousandsSeparator: ".",…
-
0
votes1
answer1418
viewsHow do I put a mask on a Bank Account input in JS?
I need to create a mask to hyphenate the penultimate number, automatically, as long as it has at least 5 characters, in a bank account input, using pure JS. Thus: xxxx-x | xxxxx-x | xxxxxx-x.…
-
0
votes2
answers3540
viewsHow to create and deploy masks for CPF, CNPJ, Data and Values?
I tried to follow some examples of masks but I could not integrate in my code... someone could help me? <table style="width: 100%" border="0"> <thead> <tr style="text-align:…
-
0
votes1
answer76
viewsHow can I make regex recognize "partial results" in Javascript to mask an input?
I’m making a <input> with mask, formatting as user type. In this case, it is a CNPJ entry. A Regex to format the CNPJ would be /(\d{2})\.?(\d{3})\.?(\d{3})\/?(\d{4})-?(\d+)/g, but so it format…
-
-1
votes1
answer454
viewsHow to remove a JS mask from an input when submitting the form?
I have a small project done in Java using Springmvc and wanted one of the fields of a form to have the monetary input mask, but when I give Submit in the form it error in Binding with the model,…
-
-1
votes1
answer104
viewsHow to Make a Field Mask in HTML with Pure Javascript?
I was developing a simple project, and I needed to use masks in a certain form. I opted, at that time, for the use of JQuery with the library Jquery Mask Plugin. $(document).ready(function(){…
-
-1
votes1
answer343
viewsPercentage mask with React-input-Mask in React js with typescript
I have to create a mask for an input in the project we are already using the React-input-Mask https://github.com/sanniassin/react-input-mask#beforemaskedstatechange The solution does not necessarily…