0
I have a text field masked as follows:
$("#txtnuminic").mask("99999999-9");
And I’m trying to extract the contents of it without the mask as follows:
valor = $("input[type='text']").get(indice).value;
I know I need to use replace, but how would it look ?
Possible duplicate of Remove jquery field mask
– Bruno Felipe