I wonder what I'm doing wrong. I'm using this plugin plugin to try to apply a CPF mask (need to be through the CDN) but when I enter the data in the field, nothing happens. Here is my head where I import the CDNS:
!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.12/jquery.mask.js"></script><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.12/jquery.mask.min.js"></script>
javascript function:
<script>
//Mascara CPF
$(document).ready(function(){
$('#paramCpf').mask('999.999.999-99');
});
</script>
My CPF field:
<TR>
<TD> <b>CPF</b> </TD>
<TD> <INPUT type="text" name="paramCpf" id="paramCpf" value=""> </TD>
</TR>